Profile Picture

how to use NAxis and NScaleconfigurator class?

Posted By Guru Sivasubramanian 13 Years Ago
Author
Message
Guru Sivasubramanian
questionmark Posted 13 Years Ago
View Quick Profile
Junior Member

Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)Junior Member (14 reputation)

Group: Forum Members
Last Active: 13 Years Ago
Posts: 14, Visits: 1
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.


Attachments
Requirements.jpg (51 views, 34.00 KB)


Similar Topics


Reading This Topic