Articles in this section
Category / Section

What are the rendering modes available for pyramid series in the .NET MVC Chart?

2 mins read

Essential Chart supports rendering of pyramid series in surface and linear mode by using the property PyramidMode 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 are proportional to their y values. In this case, the 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 pyramid series are same, then the height of their pyramid segments are equal in linear mode. Refer to the following code example.

CSHTML

@(Html.EJ().Chart("container")
    .Series(ser =>
        {
            ser.Points(point =>
                {
                    point.X("1").Y(50).Add();
                    point.X("2").Y(50).Add();                    
                })
                .PyramidMode(PyramidMode.Linear)
                .Type(SeriesType.Pyramid).Add();
        })
)

 

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

The pyramid series with two points having the same y values in 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]. The Pyramid series is rendered such that 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 the two points in pyramid series are equal, then the area of their pyramid segments are equal in surface mode. Refer to the following code example.

CSHTML

@(Html.EJ().Chart("container")
    .Series(ser =>
        {
            ser.Points(point =>
                {
                    point.X("1").Y(50).Add();
                    point.X("2").Y(50).Add();                    
                })
                .PyramidMode(PyramidMode.Surface)
                .Type(SeriesType.Pyramid).Add();
        })
)

 

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

The pyramid series with two points having the same y values in surface mode

 

Conclusion

I hope you enjoyed learning about thethe rendering modes available for pyramid series in the .NET MVC Chart.

You can refer to our .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 Blazor ComboBox 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