By Lance Levendowski - Thursday, April 14, 2016
I'm converting a project that uses Nevron Chart v3.1 to Nevron .NET Vision 2015.1. Can somebody please tell me the properties or methods in Nevron .NET Vision 2015.1 that correspond to the following properties in Nevron Chart v3.1?
Nevron.NChart.NAxis.NumericScale.AutoMin = False Nevron.NChart.NAxis.NumericScale.AutoMax = False Nevron.NChart.NAxis.NumericScale.Min = 0.0 Nevron.NChart.NAxis.NumericScale.Max = 100.0
Thank you!
|
By Nevron Support - Friday, April 15, 2016
Hi Lance, You need to assign a view object to the axis - for example: chart.Axis(StandardAxis.PrimaryY).View = new NRangeAxisView(new NRange1DD(0, 100), true, true);
Let us know if you meet any problems.
|
By Lance Levendowski - Monday, April 18, 2016
Thank you!
|
|