This KB illustrates that to set minimum and maximum values for PivotChart axis. Solution:You can set minimum and maximum values for PivotChart axis manually, using the following code examples with respective to JS, ASP and MVC platforms. JavaScript$("#PivotChart1").ejPivotChart({ url: "../wcf/OlapChartService.svc", primaryYAxis: { range: { min: 0, max: 9000000, interval: 1000000 } } }); ASP<ej:PivotChart ID="PivotChart1" runat="server" Url="../wcf/OlapChartService.svc"> <PrimaryYAxis> <Range Min="0" Max="9000000" Interval="1000000" /> </PrimaryYAxis> </ej:PivotChart> MVC@Html.EJ().Pivot().PivotChart("PivotChart1").Url(Url.Content("~/wcf/OlapChartService.svc")).PrimaryYAxis(axisRange => axisRange.Range(range => range.Min(0).Max(9000000).Interval(1000000)))
|
This page will automatically be redirected to the sign-in page in 10 seconds.