how to access Stimul Chart in VB.Net Form Page

Stimulsoft Ultimate discussion
Post Reply
roxe
Posts: 1
Joined: Fri Jun 03, 2011 2:01 pm
Location: Turkey

how to access Stimul Chart in VB.Net Form Page

Post 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
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

how to access Stimul Chart in VB.Net Form Page

Post 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.
Post Reply