Articles in this section
Category / Section

What is the difference between data labels in ASP.NET MVC Chart?

1 min read

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.

The difference between data label shape and data label template

Conclusion

I hope you enjoyed learning about the difference between data labels in ASP.NET MVC Chart.

You can refer to our ASP.NET MVC Chart feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our ASP.NET MVC Chart example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied