Articles in this section
Category / Section

What are the rendering modes available for pyramid series in JavaScript Chart ?

5 mins read

Essential Chart supports rendering of the pyramid series in surface and linear mode by using the pyramidMode property of series.

Linear Mode 

In Linear Mode, the pyramid series is rendered such that the height of a pyramid segment is proportional to the y value of the point represented by that segment. To render pyramid series in Linear Mode, you can set the pyramidMode property to linear.

For example, consider a pyramid series having two points with y values [50, 50], then the pyramid series is rendered such that the height of the two segments is proportional to their y values. In this case, two pyramid segments are drawn such that the height of each segment is 50% of pyramid height. In general, when y values of two points in the  pyramid series are same, then the height of their pyramid segments are equal. Refer to the following code example.

JS

$("#container").ejChart({
    series: [{
        type: 'pyramid',
        pyramidMode: 'linear',
        points: [
            {x:1, y:50},
            {x:2, y:50}
        ]
    }]
});

 

The following screenshot displays the pyramid series with two points having the same y values in linear mode. Since both points have same y values, height of the two pyramid segments are equal.

Linear Mode

JS Playground sample link: Linear Mode

 

Surface Mode

In Surface Mode, the pyramid series is rendered such that the surface area of a pyramid segment is proportional to the y value of the point represented by that segment. To render pyramid series in Surface Mode, you can set the pyramidMode property to surface.

For example, consider a pyramid series having two points in the surface mode with y values [50, 50]. Pyramid series is rendered such that the area of the segment is proportional to the y values. In this case, both the segments consume 50% of the total surface area of the pyramid chart. In general, when y values of two points in the pyramid series are equal, then the area of their pyramid segments are equal in surface mode. Refer to the following code example.

JS

$("#container").ejChart({
    series: [{
        type: 'pyramid',
        pyramidMode: 'surface',
        points: [
            {x:1, y:50},
            {x:2, y:50}
        ]
    }]
});

 

The following screenshot displays a pyramid series in surface mode with two points having the same y values.

Surface Mode

JS Playground sample link: Surface Mode

 

Conclusion

I hope you enjoyed learning about .the rendering modes available for pyramid series in JavaScirpt 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 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