Skip to main content Skip to footer

Add a chart control to the form or to the Spread control

You can use the chart control by itself or you can add a chart to the Spread. There are several ways to add a chart control to Spread or to the form.

Here is how you add a chart control to the form by itself:

  1. Add a chart control to the form. FpChart is located in the GrapeCity Spread section of the toolbox after you install the product.
  2. Add the chart code.

This partial code links chart information to the chart control.

C#

//How to use the chart outside of Spread

//fpChart1.Model = model;

VB

fpChart1.Model = model

This complete code sample creates chart information and adds the information to the chart control.

C#

FarPoint.Win.Chart.BarSeries series = new FarPoint.Win.Chart.BarSeries();

series.Values.Add(2.0);

series.Values.Add(4.0);

series.Values.Add(3.0);

series.Values.Add(5.0);

FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea();

plotArea.Location = new PointF(0.2f, 0.2f);

plotArea.Size = new SizeF(0.6f, 0.6f);

plotArea.Series.Add(series);

FarPoint.Win.Chart.LabelArea label = new FarPoint.Win.Chart.LabelArea();

label.Text = "Bar Chart";

label.Location = new PointF(0.5f, 0.02f);

label.AlignmentX = 0.5f;

label.AlignmentY = 0.0f;

FarPoint.Win.Chart.LegendArea legend = new FarPoint.Win.Chart.LegendArea();

legend.Location = new PointF(0.98f, 0.5f);

legend.AlignmentX = 1.0f;

legend.AlignmentY = 0.5f;

FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel();

model.LabelAreas.Add(label);

model.LegendAreas.Add(legend);

model.PlotAreas.Add(plotArea);

fpChart1.Model = model;

VB

Dim series As New FarPoint.Win.Chart.BarSeries()

series.Values.Add(2.0)

series.Values.Add(4.0)

series.Values.Add(3.0)

series.Values.Add(5.0)

Dim plotArea As New FarPoint.Win.Chart.YPlotArea()

plotArea.Location = New PointF(0.2F, 0.2F)

plotArea.Size = New SizeF(0.6F, 0.6F)

plotArea.Series.Add(series)

Dim label As New FarPoint.Win.Chart.LabelArea()

label.Text = "Bar Chart"

label.Location = New PointF(0.5F, 0.02F)

label.AlignmentX = 0.5F

label.AlignmentY = 0.0F

Dim legend As New FarPoint.Win.Chart.LegendArea()

legend.Location = New PointF(0.98F, 0.5F)

legend.AlignmentX = 1.0F

legend.AlignmentY = 0.5F

Dim model As New FarPoint.Win.Chart.ChartModel()

model.LabelAreas.Add(label)

model.LegendAreas.Add(legend)

model.PlotAreas.Add(plotArea)

fpChart1.Model = model

Here is how you add a chart to the Spread control:

  1. Add the Spread control to the project (located in the GrapeCity Spread section of the toolbox).
  2. Add the chart namespace to the project (FarPoint.Win.Chart namespace).
  3. Add the code to the project.

This partial code illustrates how to add the chart to Spread.

C#

//How to add the Chart to Spread

FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart();

chart.Size = new Size(200, 200);

chart.Location = new Point(100, 100);

chart.Model = model;

fpSpread1.Sheets[0].Charts.Add(chart);

VB

'How to add the Chart to Spread, requires the chart assembly

Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()

chart.Size = New Size(200, 200)

chart.Location = New Point(100, 100)

chart.Model = model

FpSpread1.Sheets(0).Charts.Add(chart)

The following code is a complete example of how to add the chart to Spread.

*Note - Elevation and rotation are necessary if you set chart type to 3D when using the SpreadChart class.

C#

FarPoint.Win.Chart.BarSeries series = new FarPoint.Win.Chart.BarSeries();

series.Values.Add(2.0);

series.Values.Add(4.0);

series.Values.Add(3.0);

series.Values.Add(5.0);

FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea();

plotArea.Location = new PointF(0.2f, 0.2f);

plotArea.Size = new SizeF(0.6f, 0.6f);

plotArea.Series.Add(series);

FarPoint.Win.Chart.LabelArea label = new FarPoint.Win.Chart.LabelArea();

label.Text = "Bar Chart";

label.Location = new PointF(0.5f, 0.02f);

label.AlignmentX = 0.5f;

label.AlignmentY = 0.0f;

FarPoint.Win.Chart.LegendArea legend = new FarPoint.Win.Chart.LegendArea();

legend.Location = new PointF(0.98f, 0.5f);

legend.AlignmentX = 1.0f;

legend.AlignmentY = 0.5f;

FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel();

model.LabelAreas.Add(label);

model.LegendAreas.Add(legend);

model.PlotAreas.Add(plotArea);

//How to add the Chart to Spread, requires the chart assembly

FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart();

chart.Size = new Size(200, 200);

chart.Location = new Point(100, 100);

chart.Model = model;

fpSpread1.Sheets[0].Charts.Add(chart);

VB

Dim series As New FarPoint.Win.Chart.BarSeries()

series.Values.Add(2.0)

series.Values.Add(4.0)

series.Values.Add(3.0)

series.Values.Add(5.0)

Dim plotArea As New FarPoint.Win.Chart.YPlotArea()

plotArea.Location = New PointF(0.2F, 0.2F)

plotArea.Size = New SizeF(0.6F, 0.6F)

plotArea.Series.Add(series)

Dim label As New FarPoint.Win.Chart.LabelArea()

label.Text = "Bar Chart"

label.Location = New PointF(0.5F, 0.02F)

label.AlignmentX = 0.5F

label.AlignmentY = 0.0F

Dim legend As New FarPoint.Win.Chart.LegendArea()

legend.Location = New PointF(0.98F, 0.5F)

legend.AlignmentX = 1.0F

legend.AlignmentY = 0.5F

Dim model As New FarPoint.Win.Chart.ChartModel()

model.LabelAreas.Add(label)

model.LegendAreas.Add(legend)

model.PlotAreas.Add(plotArea)

'How to add the Chart to Spread, requires the chart assembly

Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()

chart.Size = New Size(200, 200)

chart.Location = New Point(100, 100)

chart.Model = model

FpSpread1.Sheets(0).Charts.Add(chart)

You can also add data to the Spread cells to display in the chart or add the data to the chart.

This example adds data to the Spread control.

image001

C#

//Add data to the Spread cells

fpSpread1.Sheets[0].Cells[0, 1].Value = "c1";

fpSpread1.Sheets[0].Cells[0, 2].Value = "c2";

fpSpread1.Sheets[0].Cells[0, 3].Value = "c3";

fpSpread1.Sheets[0].Cells[1, 0].Value = "s1";

fpSpread1.Sheets[0].Cells[2, 0].Value = "s2";

fpSpread1.Sheets[0].Cells[3, 0].Value = "s3";

fpSpread1.Sheets[0].Cells[4, 0].Value = "s4";

fpSpread1.Sheets[0].Cells[5, 0].Value = "s5";

fpSpread1.Sheets[0].Cells[6, 0].Value = "s6";

fpSpread1.Sheets[0].Cells[1, 1].Value = 1;

fpSpread1.Sheets[0].Cells[2, 1].Value = 2;

fpSpread1.Sheets[0].Cells[3, 1].Value = 3;

fpSpread1.Sheets[0].Cells[4, 1].Value = 4;

fpSpread1.Sheets[0].Cells[5, 1].Value = 5;

fpSpread1.Sheets[0].Cells[6, 1].Value = 6;

fpSpread1.Sheets[0].Cells[1, 2].Value = 7;

fpSpread1.Sheets[0].Cells[2, 2].Value = 8;

fpSpread1.Sheets[0].Cells[3, 2].Value = 9;

fpSpread1.Sheets[0].Cells[4, 2].Value = 10;

fpSpread1.Sheets[0].Cells[5, 2].Value = 11;

fpSpread1.Sheets[0].Cells[6, 2].Value = 12;

fpSpread1.Sheets[0].Cells[1, 3].Value = 13;

fpSpread1.Sheets[0].Cells[2, 3].Value = 14;

fpSpread1.Sheets[0].Cells[3, 3].Value = 15;

fpSpread1.Sheets[0].Cells[4, 3].Value = 16;

fpSpread1.Sheets[0].Cells[5, 3].Value = 17;

fpSpread1.Sheets[0].Cells[6, 3].Value = 18;

FarPoint.Win.Spread.Model.CellRange range = new FarPoint.Win.Spread.Model.CellRange(0, 0, 7, 4);

fpSpread1.Sheets[0].AddChart(range, typeof(FarPoint.Win.Chart.ClusteredBarSeries), 400, 300, 0, 0, FarPoint.Win.Chart.ChartViewType.View2D, false);

VB

FpSpread1.Sheets(0).Cells(0, 1).Value = "c1"

FpSpread1.Sheets(0).Cells(0, 2).Value = "c2"

FpSpread1.Sheets(0).Cells(0, 3).Value = "c3"

FpSpread1.Sheets(0).Cells(1, 0).Value = "s1"

FpSpread1.Sheets(0).Cells(2, 0).Value = "s2"

FpSpread1.Sheets(0).Cells(3, 0).Value = "s3"

FpSpread1.Sheets(0).Cells(4, 0).Value = "s4"

FpSpread1.Sheets(0).Cells(5, 0).Value = "s5"

FpSpread1.Sheets(0).Cells(6, 0).Value = "s6"

FpSpread1.Sheets(0).Cells(1, 1).Value = 1

FpSpread1.Sheets(0).Cells(2, 1).Value = 2

FpSpread1.Sheets(0).Cells(3, 1).Value = 3

FpSpread1.Sheets(0).Cells(4, 1).Value = 4

FpSpread1.Sheets(0).Cells(5, 1).Value = 5

FpSpread1.Sheets(0).Cells(6, 1).Value = 6

FpSpread1.Sheets(0).Cells(1, 2).Value = 7

FpSpread1.Sheets(0).Cells(2, 2).Value = 8

FpSpread1.Sheets(0).Cells(3, 2).Value = 9

FpSpread1.Sheets(0).Cells(4, 2).Value = 10

FpSpread1.Sheets(0).Cells(5, 2).Value = 11

FpSpread1.Sheets(0).Cells(6, 2).Value = 12

FpSpread1.Sheets(0).Cells(1, 3).Value = 13

FpSpread1.Sheets(0).Cells(2, 3).Value = 14

FpSpread1.Sheets(0).Cells(3, 3).Value = 15

FpSpread1.Sheets(0).Cells(4, 3).Value = 16

FpSpread1.Sheets(0).Cells(5, 3).Value = 17

FpSpread1.Sheets(0).Cells(6, 3).Value = 18

Dim range As New FarPoint.Win.Spread.Model.CellRange(0, 0, 7, 4)

FpSpread1.Sheets(0).AddChart(range, GetType(FarPoint.Win.Chart.ClusteredBarSeries), 400, 300, 0, 0, FarPoint.Win.Chart.ChartViewType.View2D, False)

This example adds the data to the chart.

C#

FarPoint.Win.Chart.BarSeries series = new FarPoint.Win.Chart.BarSeries();

series.Values.Add(2.0);

series.Values.Add(4.0);

series.Values.Add(3.0);

series.Values.Add(5.0);

FarPoint.Win.Chart.YPlotArea plotArea = new FarPoint.Win.Chart.YPlotArea();

plotArea.Location = new PointF(0.2f, 0.2f);

plotArea.Size = new SizeF(0.6f, 0.6f);

plotArea.Series.Add(series);

FarPoint.Win.Chart.LabelArea label = new FarPoint.Win.Chart.LabelArea();

label.Text = "Bar Chart";

label.Location = new PointF(0.5f, 0.02f);

label.AlignmentX = 0.5f;

label.AlignmentY = 0.0f;

FarPoint.Win.Chart.LegendArea legend = new FarPoint.Win.Chart.LegendArea();

legend.Location = new PointF(0.98f, 0.5f);

legend.AlignmentX = 1.0f;

legend.AlignmentY = 0.5f;

FarPoint.Win.Chart.ChartModel model = new FarPoint.Win.Chart.ChartModel();

model.LabelAreas.Add(label);

model.LegendAreas.Add(legend);

model.PlotAreas.Add(plotArea);

//How to add the Chart to Spread, requires the chart assembly

FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart();

chart.Size = new Size(200, 200);

chart.Location = new Point(100, 100);

chart.Model = model;

fpSpread1.Sheets[0].Charts.Add(chart);

VB

Dim series As New FarPoint.Win.Chart.BarSeries()

series.Values.Add(2.0)

series.Values.Add(4.0)

series.Values.Add(3.0)

series.Values.Add(5.0)

Dim plotArea As New FarPoint.Win.Chart.YPlotArea()

plotArea.Location = New PointF(0.2F, 0.2F)

plotArea.Size = New SizeF(0.6F, 0.6F)

plotArea.Series.Add(series)

Dim label As New FarPoint.Win.Chart.LabelArea()

label.Text = "Bar Chart"

label.Location = New PointF(0.5F, 0.02F)

label.AlignmentX = 0.5F

label.AlignmentY = 0.0F

Dim legend As New FarPoint.Win.Chart.LegendArea()

legend.Location = New PointF(0.98F, 0.5F)

legend.AlignmentX = 1.0F

legend.AlignmentY = 0.5F

Dim model As New FarPoint.Win.Chart.ChartModel()

model.LabelAreas.Add(label)

model.LegendAreas.Add(legend)

model.PlotAreas.Add(plotArea)

'How to add the Chart to Spread, requires the chart assembly

Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart()

chart.Size = New Size(200, 200)

chart.Location = New Point(100, 100)

chart.Model = model

FpSpread1.Sheets(0).Charts.Add(chart)

MESCIUS inc.

comments powered by Disqus