Articles in this section
Category / Section

What are the shapes available for marker, data label, etc.., in JavaScript charts?

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.

JS

$("#container").ejChart({
    legend: {
        shape: 'diamond'
    },
    crosshair: {
        type: 'trackball',
        visible: true,
        marker: {
            visible: true,
            shape: 'hexagon',
            border: {
                color: 'blue'
            }
        }
    },
    commonSeriesOptions: {
        type: 'line'
        marker: {
            visible: true,
            shape: 'circle',
            dataLabel:{
                visible: true,
                shape: 'rectangle',
                fill: 'yellow'
            }
        }
    }
});

 

Refer to the following screenshot.

Different shapes

JS Playground sample link: Shapes


Conclusion

I hope you enjoyed learning what are the shapes available for marker, data labels, etc.., in JavaScript charts.

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 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