What is the difference between data labels in JavaScript Chart?
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.
HTML
<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>
JS
$("#container").ejChart({ . . . . . . . . . . . . . . commonSeriesOptions: { type: 'spline', marker: { visible: true, dataLabel: { visible: true, shape: 'diamond', fill: 'white' } } }, series: [{ . . . . . . . . . . . . . . . . . . marker: { dataLabel: { visible: true, //using ID of the HTML template: 'template' } }, name: 'series' }, . . . . . . . . . . . . ] });
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.
JS Playground sample link: Data label Shape and Template
Conclusion
I hope you enjoyed the difference between data labels in JavaScript Chart.
You can refer to our JavaScript 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 JavaScript 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 forums, Direct-Trac, or feedback portal. We are always happy to assist you!