2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
Markers are similar to adornments that is used to represent points in a series. When you place mouse on a marker, it gets highlighted automatically. Refer to the Data Labels for using data labels in chart. Essential Chart supports using Marker to represent points in a series. You can set Marker to all series or specific series based on the requirement. To enable marker for all the series in chart, you can declare it within commonSeriesOptions of chart. The online sample with markers in series is available in the following link Chart Symbols. The visible property of marker is enabled to display marker. You can customize marker size, shape etc. The following code example explains how to set marker for all series. CSHTML @(Html.EJ().Chart("container") .CommonSeriesOptions(options=> options.Marker(marker=> marker.Visible(true).Shape(ChartShape.Circle) )) )
The following code example explains how to set marker for specific series. CSHTML @(Html.EJ().Chart("container") .Series(series=> series.Marker(marker=> marker.Visible(true).Shape(ChartShape.Circle)) )
|
2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.