Hi Jsu,
Greetings from Syncfusion.
We have analyzed the enquired requirement. We would like to let you know that, currently there is no option to disable the pagination. When the legend size is increased, then pagination will be visible, this is our default behavior. However, you can specify the size (height/width) to legend based on the device. Find the code snippet below to achieve this requirement.
@Html.EJS().Chart("container")
//Other configurations
.Load("load").Render()
function load(args) {
args.chart.legendSettings.width = ej.base.Browser.isDevice ? "50%" : "100%";
args.chart.legendSettings.height = ej.base.Browser.isDevice ? "50%" : "100%";
}
|
This can be modified based on your scenario.
Thanks,
Dharani.