2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
Data Labels can be displayed as a rectangle or a circle in the background by using the Shape property of the Data Label. Data label template refers to displaying Data Labels along with HTML elements like img, div, and span in the Data Labels by using Template property of the Data Label. Data label template is more customizable than Data Labels because HTML elements can be styled by using CSS, whereas customization of data label shapes is limited and HTML elements like image, table, etc., cannot be displayed in the data label shapes. The following code example illustrates this.
CSHTML <div id="template" style="display:none; width:60px;"> <div id="left" style="float:left; height: 30px;"> <img src="~/Images/grain.png" width="30" height="30" /> </div> <div id="right" style="text-align:center; align-content:center"> <div id="point">#point.y#%</div> </div> </div> @(Html.EJ().Chart("container") . . . . . . . . . . . . . . . . .CommonSeriesOptions(options=> options.Type(SeriesType.Spline).Marker(marker=> marker.Visible(true).DataLabel(label=> label.Visible(true) .Fill("white") .Shape(ChartShape.Diamond)))) .Series(ser=> { ser.Marker(marker => marker.DataLabel(label => label.Visible(true) .Template("template"))) . . . . . . . . . . . . . . .Add(); . . . . . . . . . . . . . . . . }) )
The following screenshot displays the chart with two series; one by using the data label template and the other by using the diamond background shape for the data labels. |
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.