Visual Basic (Declaration) | |
---|---|
Public Function New() |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As New HighLowBarSeries() |
C# | |
---|---|
public HighLowBarSeries() |
This example creates a chart control.
C# | Copy Code |
---|---|
FarPoint.Win.Chart.HighLowBarSeries hseries = new FarPoint.Win.Chart.HighLowBarSeries(); hseries.HighValues.AddRange(new double[] { 5, 7, 6, 8, 7, 9 }); hseries.LowValues.AddRange(new double[] { 2, 4, 3, 5, 4, 6}); YPlotArea plotArea = new YPlotArea(); plotArea.Location = new PointF(0.2f, 0.2f); plotArea.Size = new SizeF(0.6f, 0.6f); plotArea.Series.Add(hseries); ChartModel model = new ChartModel(); model.PlotAreas.Add(plotArea); FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart(); chart.Model = model; chart.Size = new Size(200, 200); chart.Location = new Point(50, 50); FpSpread1.Sheets[0].Charts.Add(chart); |
Visual Basic | Copy Code |
---|---|
Dim hseries As New FarPoint.Win.Chart.HighLowBarSeries() hseries.HighValues.AddRange(New Double() {5, 7, 6, 8, 7, 9}) hseries.LowValues.AddRange(New Double() {2, 4, 3, 5, 4, 6}) Dim plotArea As New FarPoint.Win.Chart.YPlotArea() plotArea.Location = New System.Drawing.PointF(0.2F, 0.2F) plotArea.Size = New System.Drawing.SizeF(0.6F, 0.6F) plotArea.Series.Add(hseries) Dim model As New FarPoint.Win.Chart.ChartModel() model.PlotAreas.Add(plotArea) Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart() chart.Model = model chart.Size = New Size(200, 200) chart.Location = New Point(50, 50) FpSpread1.Sheets(0).Charts.Add(chart) |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2