Articles in this section
Category / Section

What is the difference between data labels in ASP.NET Web Forms 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.

ASP

        <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>
    <ej:Chart ID="container" CanResize="true" runat="server">
      . . . . . . .
      . . . . . . .
      <CommonSeriesOptions Type="Spline">
          <Marker Visible="true">
              <DataLabel Visible="true" Shape="Diamond" Fill="white"></DataLabel>
          </Marker>
      </CommonSeriesOptions>
        <Series>
            <ej:Series>
              <Marker>
                 <DataLabel Visible="true" template="template"></DataLabel>
              </Marker>
              . . . . . . . . . .
              . . . . . . . . . . 
            </ej:Series>
            . . . . . . . . . . .
            . . . . . . . . . . .
        </Series>
    </ej:Chart>      

 

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

 

 

Note:

A new version of Essential Studio for ASP.NET is available. Versions prior to the release of Essential Studio 2014, Volume 2 will now be referred to as a classic versions.The new ASP.NET suite is powered by Essential Studio for JavaScript providing client-side rendering of HTML 5-JavaScript controls, offering better performance, and better support for touch interactivity. The new version includes all the features of the old version, so migration is easy.

The Classic controls can be used in existing projects; however, if you are starting a new project, we recommend using the latest version of Essential Studio for ASP.NET. Although Syncfusion will continue to support all Classic Versions, we are happy to assist you in migrating to the newest edition.

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
Please sign in to leave a comment
Access denied
Access denied