Page 1 of 1

how to access Stimul Chart in VB.Net Form Page

Posted: Fri Jun 03, 2011 2:05 pm
by roxe
how to access Stimul Chart in VB.Net Form Page

StiReport1.Chart1.series.add("Sample") :D i can Not Access!! Plz Help Me

how to access Stimul Chart in VB.Net Form Page

Posted: Mon Jun 06, 2011 3:14 am
by Vladimir
Hello,

To add a new series, you must to create it and set the necessary parameters. For example:

Code: Select all

Series1 as StiClusteredColumnSeries = New StiClusteredColumnSeries
Series1.ArgumentDataColumn = "Employees.LastName"
Series1.ValueDataColumn = "Employees.EmployeeID"

StiReport1.Chart1.Series.Add(Series1)
Thank you.