How to create a chart at runtime?
How to create a chart at runtime?
I have created Text Report at run time using build Report Sample ? But how should i create a chart at run time ? Can u provide me sample Application?
How to create a chart at runtime?
Is it possible to create chart at runtime?
Thanks!
Thanks!
How to create a chart at runtime?
Use, for example, the following code:
Thank you.
Code: Select all
Dim Chart1 As StiChart = New Stimulsoft.Report.Chart.StiChart
Chart1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1.2, 0.8, 16.6, 15.4)
Chart1.Name = "Chart1"
...
report.Pages[0].Components.Add(Chart1)
How to create a chart at runtime?
I need a sample application can you provide me sample for creating chart at run time?
How to create a chart at runtime?
See the attached sample project with chart.
Thank you.
Thank you.
- Attachments
-
- 12.VBtestproject2005.zip
- (339.66 KiB) Downloaded 271 times
How to create a chart at runtime?
Thank You!