Back to Devexpress

IChartSeriesLabelConnector.Visible Property

blazor-devexpress-dot-blazor-dot-ichartserieslabelconnector-8bddb39f.md

latest2.0 KB
Original Source

IChartSeriesLabelConnector.Visible Property

Specifies the label connector’s visibility state.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
bool Visible { get; set; }

Property Value

TypeDescription
Boolean

true to display the label’s connector; otherwise, false.

|

Remarks

The following code snippet hides connectors for all visible point labels.

razor
<DxChart Data="@WeatherForecasts" CustomizeSeriesPoint="@PreparePointLabel">
    <DxChartLineSeries SummaryMethod="@(i => (int)i.Average())"
                       ValueField="@((WeatherForecast i) => i.TemperatureF)"
                       ArgumentField="@(i => i.Date.Date)"
                       Name="Temperature, F">
        <DxChartSeriesLabel Position="RelativePosition.Outside" />
    </DxChartLineSeries>
    <DxChartLegend Position="RelativePosition.Outside" />
</DxChart>

@code {
    WeatherForecast[] WeatherForecasts;
    ...
    protected void PreparePointLabel(ChartSeriesPointCustomizationSettings pointSettings) {
        double value = (double)pointSettings.Point.Value;
        if (value > 25 && value < 75) {
            pointSettings.PointLabel.Visible = true;
            pointSettings.PointLabel.Connector.Visible = false;
        }
    }
}

Run Demo: Charts - Series Label Customization

See Also

IChartSeriesLabelConnector Interface

IChartSeriesLabelConnector Members

DevExpress.Blazor Namespace