We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
namespace SimpleDemo { using OxyPlot; using OxyPlot.Axes; using OxyPlot.Series; using System; public class MainViewModel { public MainViewModel() { var model = new PlotModel { Title = "Hello SharpDX from WPF" }; model.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom }); model.Axes.Add(new LinearAxis { Position = AxisPosition.Left, Title="Left Axis Title" }); var lineSeries = new LineSeries { Title = "LineSeries", MarkerType = MarkerType.Circle }; Random rn = new Random(); for (int i = 0; i < **1e5**; i++) { lineSeries.Points.Add(new DataPoint(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:
No branches or pull requests
The text was updated successfully, but these errors were encountered: