Hi,
I would like to know if I can create line pie and line charts using sharpdeveloper. Or is this a function that will come later.
example of what I want to try and do.
There is a chart tool where you can add your values and plot in various styles
Here's a simple example of creating a line graph with a single series containing 3 data points.
Drag a chart to your form and add this code
01 | PrivateSubForm1_Load(ByValsender AsSystem.Object, ByVale AsSystem.EventArgs) HandlesMyBase.Load |
03 | Chart1.Titles.Add("Demo") |
08 | s.ChartType = SeriesChartType.Line |
09 | s.Points.AddXY("1990", 27) |
10 | s.Points.AddXY("1991", 15) |
11 | s.Points.AddXY("1992", 17) |
You will need to add Imports System.Windows.Forms.DataVisualization.Charting
Of course you would have to iterate through your data and add points based on your information.