Line Chart

Fully implemented BCGControlBar Pro (MFC)

Fully implemented BCGSuite (MFC)

Not available BCGControlBar for .NET

Line Chart has the following features: 

  • 2D and 3D modes
  • Simple Line
  • Stacked Line
  • 100% Stacked Line
  • Stacked groups
  • Spline Line (Kochanek-Bartels and Hermite)
  • Step Line
  • Reversed Step Line
  • Line Series in History Mode
  • Auto Coloring of individual lines and Data Markers
  • Closed Shape with fill

 

Simple Line in 3D:

Simple Line in 3D:

Stacked Spline:

Stacked Spline:

Step Line:

Step Line:

Sample code:

CBCGPChartVisualObject chart;
chart.SetChartType(BCGPChartLine);

CBCGPChartSeries* pSeries1 = chart.CreateSeries(_T("Series 1"));

pSeries1->AddDataPoint(9.);
pSeries1->AddDataPoint(15.);
pSeries1->AddDataPoint(19.);
pSeries1->AddDataPoint(21.);
pSeries1->AddDataPoint(23.);

chart.Redraw();