Articles in this section
Category / Section

What are the shapes available for marker, data label, etc.., in the ASP.NET MVC chart?

1 min read

Essential Chart supports 18 different type of shapes. They are

  1. Circle
  2. Cross
  3. Diamond
  4. Down arrow
  5. Ellipse
  6. Hexagon
  7. Horizontal line
  8. Inverted triangle
  9. Left arrow
  10. Pentagon
  11. Right arrow
  12. Series type (available only for legend)
  13. Star
  14. Trapezoid
  15. Up arrow
  16. Vertical line
  17. Wedge
  18. Image

The above shapes are applicable for:

1)Markers

2)Data label background shape

3)Trackball marker

4)Legend item symbol.

The following code example uses circle symbol for marker, rectangle symbol for data label shape background, hexagon symbol for trackball marker and diamond shape for legend item symbol.

CSHTML

@(Html.EJ().Chart("container")
.Legend(legend=>
    legend.Shape(ChartShape.Diamond))
    .Crosshair(crosshair=>
        crosshair.Visible(true)
        .Type(CrosshairType.Trackball)
        .Marker(marker=>
            marker.Visible(true)
            .Border(border=>
                border.Color("blue"))
            .Shape(ChartShape.Hexagon)))
    .CommonSeriesOptions(options=>
        options.Marker(marker=>
            marker.Visible(true)
            .Shape(ChartShape.Circle)
            .DataLabel(label=>
            label.Visible(true)
            .Offset(20)
            .Fill("yellow")
            .Shape(ChartShape.Rectangle))))
)

 

Refer to the following screenshot.

The different shapes available in chart

[14:14] Yvone Atieno Onyango

Conclusion

I hope you enjoyed learning about how to round the decimal values in Chart axis.

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!

ASP.NET MVC Charts - Blazing fast & Real-time Graphs | Syncfusion

ASP.NET MVC Charts library supports 50+ market-standard chart types like column, line, bar, pie, & area with real-time data & fast rendering.


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