Class ChartCommonMarker
Specifies the marker configuration of the chart.
Inheritance
System.Object
ChartCommonMarker
Implements
System.IAsyncDisposable
Assembly: Syncfusion.Blazor.Toolkit.dll
public class ChartCommonMarker : ChartSubComponent, IAsyncDisposable, ISubcomponentTracker, IChartElement
<SfChart>
<ChartSeries DataSource="@Data" XName="XValue" YName="YValue" Name="Series A">
<ChartMarker Visible="true"
Shape="ChartShape.Circle"
Height="8"
Width="8"
Fill="#3B82F6"
Opacity="0.9">
<ChartMarkerBorder Color="#1E40AF" Width="2"></ChartMarkerBorder>
<ChartMarkerOffset X="2" Y="-2" />
<ChartDataLabel Visible="true" />
</ChartMarker>
</ChartSeries>
</SfChart>
Constructors
Declaration
public ChartCommonMarker()
Properties
Gets or sets a value that allows or disallows marker highlight for the chart tooltip.
Declaration
public bool AllowHighlight { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
true to permit marker highlight on tooltip; otherwise false. Default is true.
|
<ChartMarker Visible="true" AllowHighlight="false" />
Declaration
public ChartMarkerBorder Border { get; set; }
Property Value
Declaration
public ChartDataLabel DataLabel { get; set; }
Property Value
Declaration
public string Fill { get; set; }
Property Value
Declaration
public double Height { get; set; }
Property Value
Declaration
public Uri ImageUrl { get; set; }
Property Value
Declaration
public bool IsFilled { get; set; }
Property Value
Declaration
public ChartMarkerOffset Offset { get; set; }
Property Value
Declaration
public double Opacity { get; set; }
Property Value
Declaration
public ChartShape Shape { get; set; }
Property Value
Declaration
public bool Visible { get; set; }
Property Value
Declaration
public double Width { get; set; }
Property Value
Implements
System.IAsyncDisposable