Other API Samples C# logo

O-H-L-C Stock Chart SpreadsheetGear API Sample

Description

Demonstrates generating an O-H-L-C Stock Chart.

Source Code

// Create a new workbook and get a reference to the active sheet and its cells.
SpreadsheetGear.IWorkbook workbook = 
    SpreadsheetGear.Factory.GetWorkbook(@"ChartData-Stock-O-H-L-C.xlsx");
SpreadsheetGear.IWorksheet worksheet = workbook.ActiveWorksheet;
SpreadsheetGear.IRange cells = worksheet.Cells;

// Get a reference to the worksheet window info and shapes collection.
SpreadsheetGear.IWorksheetWindowInfo windowInfo = worksheet.WindowInfo;
SpreadsheetGear.Shapes.IShapes shapes = worksheet.Shapes;

// Add a chart to the worksheet's shape collection.
// NOTE: Calculate the coordinates of the chart by converting row and column
//       coordinates to points.  Use fractional row and column values to get 
//       coordinates anywhere in between row and column boundaries.
double left = windowInfo.ColumnToPoints(0.15);
double top = windowInfo.RowToPoints(0.5);
double right = windowInfo.ColumnToPoints(5.85);
double bottom = windowInfo.RowToPoints(13.5);
SpreadsheetGear.Charts.IChart chart =
    shapes.AddChart(left, top, right - left, bottom - top).Chart;

// Get the source data range from an existing XML File.
SpreadsheetGear.IRange source = cells["G2:K24"];

// Set the chart's source data range, plotting series in columns.
chart.SetSourceData(source, SpreadsheetGear.Charts.RowCol.Columns);

// Set the chart type to an open-high-low-close stock chart.
chart.ChartType = SpreadsheetGear.Charts.ChartType.StockOHLC;

// Get a reference to the first and only chart group.
SpreadsheetGear.Charts.IChartGroup chartGroup = chart.ChartGroups[0];

// Change the fill color of the down bars.
chartGroup.DownBars.Format.Fill.ForeColor.RGB = SpreadsheetGear.Colors.Red;

// Change the fill color of the up bars.
chartGroup.UpBars.Format.Fill.ForeColor.RGB = SpreadsheetGear.Colors.Green;

// Get a reference to the primary category axis.
SpreadsheetGear.Charts.IAxis categoryAxis =
    chart.Axes[SpreadsheetGear.Charts.AxisType.Category];

// Change the primary category axis to always use a category scale.
categoryAxis.CategoryType =
    SpreadsheetGear.Charts.CategoryType.CategoryScale;

// Set the label frequency of the primary category axis.
categoryAxis.TickLabelSpacing = 7;

// Get a reference to the primary value axis.
SpreadsheetGear.Charts.IAxis valueAxis =
    chart.Axes[SpreadsheetGear.Charts.AxisType.Value];

// Set the min, max, and major units of the primary value axis.
valueAxis.MinimumScale = 80;
valueAxis.MaximumScale = 130;
valueAxis.MajorUnit = 10;

// Hide the major gridlines on the primary value axis.
valueAxis.HasMajorGridlines = false;

// Delete the legend.
chart.HasLegend = false;

// Add a chart title and change the font size.
chart.HasTitle = true;
chart.ChartTitle.Text = "ABC Company (Open-High-Low-Close)";
chart.ChartTitle.Font.Size = 10;