Nevron Forum

how to use NAxis and NScaleconfigurator class?

https://www.nevron.com/Forum/Topic5113.aspx

By Guru Sivasubramanian - Tuesday, April 26, 2011

In my project,i need to create multiple smoothline,axis,scaleconfigurator pro grammatically.

I used for below code for creating smooth line

NSmoothLineSeries[] mysmoothline = new NSmoothLineSeries[100];

//Create smooth line series
for (int i = 0; i <5; i++)
{
mysmoothline[i] = new NSmoothLineSeries();
}
the above code will create 5 smooth line.

like that,i need to create for Naxis and Nscaleconfigurator.

if i create,
NAxis[] myaxis = new NAxis[100];
NScaleConfigurator[] myscaleconfigurator = new NScaleConfigurator[100];

for (int j = 0; j <5; i++)
{
myaxis[j] = new NAxis();
myscaleconfigurator[j]= new NScaleConfigurator();

}
i got Error--> 1.Cannot create an instance of the abstract class or interface 'Nevron.Chart.NAxis'

so,please tell me,how to use Naxis and Nscaleconfigurator classes for creating multiple axis and scaleconfigurator.

i attached my requirement with this post.