You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespaceSimpleDemo{usingOxyPlot;usingOxyPlot.Axes;usingOxyPlot.Series;usingSystem;publicclassMainViewModel{publicMainViewModel(){varmodel=newPlotModel{Title="Hello SharpDX from WPF"};model.Axes.Add(newLinearAxis{Position=AxisPosition.Bottom});model.Axes.Add(newLinearAxis{Position=AxisPosition.Left,Title="Left Axis Title"});varlineSeries=newLineSeries{Title="LineSeries",MarkerType=MarkerType.Circle};Randomrn=newRandom();for(inti=0;i<**1e5**;i++){lineSeries.Points.Add(newDataPoint(i,rn.NextDouble()));}model.Series.Add(lineSeries);this.Model=model;}
public PlotModel Model {get; private set;}}}
The text was updated successfully, but these errors were encountered:
objorke
changed the title
Raise Exception when dislplaying large amount of Points
Raise Exception when displaying large amount of Points
Feb 26, 2020
The text was updated successfully, but these errors were encountered: