KarlZ
KarlZ

Reputation: 170

Is there a way to plot more than 1000 points in a scatter plot using the Highcharts .NET Wrapper?

I've seen some posts that mention a 1000 point limit, which is what I am encountering. I'm using Highsoft.Web.Mvc.Charts Perhaps there is a different way than to use, Highcharts with Chart.Type = ChartType.Scatter and Series with a ScatterSeries?

Upvotes: 0

Views: 300

Answers (1)

Sebastian Wędzel
Sebastian Wędzel

Reputation: 11633

According to the comments - disabling the series.turboThreshold allows rendering a higher amount of points.

API: https://dotnet.highcharts.com/Help/Highcharts/html/class_highsoft_1_1_web_1_1_mvc_1_1_charts_1_1_plot_options_scatter.html#a3674387e934212eb1327e07c29678d9f

Upvotes: 1

Related Questions