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. 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. JS Playground sample link: Surface Mode |
This page will automatically be redirected to the sign-in page in 10 seconds.