BarChart

class BarChart: public Chart

Implements a bar chart.  A bar chart contains a set of bar data elements, grid lines, two axes and a headline label.

Inherits from Chart.

Summary
BarChartImplements a bar chart.
Functions
BarChartInitializes the object.
~BarChartReleases all allocated resources.
DrawDraws the chart.
DrawLabelsDraws the label assigned to the chart.
ChangePositionUnused function.
ChangeAlphaUnused function.

Functions

BarChart

BarChart(DataSet *pDataSet)

Initializes the object.

Parameters

pDataSetPointer to the data set object that shall be represented by the chart.

~BarChart

~BarChart()

Releases all allocated resources.

Draw

void Draw(QPainter *pPainter)

Draws the chart.  Inherited from AlterableObject.

Parameters

pPainterThe QPainter object that shall be used for painting.

DrawLabels

void DrawLabels(QPainter *pPainter)

Draws the label assigned to the chart.  Inherited from AlterableObject.

Parameters

pPainterThe QPainter object that shall be used for painting.

ChangePosition

void ChangePosition(float fDeltaLeft,
float fDeltaTop,
float fDeltaBottom)

Unused function.  Inherited from AlterableObject.

Parameters

fDeltaLeftUnused parameter.
fDeltaTopUnused parameter.
fDeltaBottomUnused parameter.

ChangeAlpha

void ChangeAlpha(float fDeltaAlpha)

Unused function.  Inherited from AlterableObject.

Parameters

fDeltaAlphaUnused parameter.
class BarChart: public Chart
Implements a bar chart.
BarChart(DataSet *pDataSet)
Initializes the object.
~BarChart()
Releases all allocated resources.
void Draw(QPainter *pPainter)
Draws the chart.
void DrawLabels(QPainter *pPainter)
Draws the label assigned to the chart.
void ChangePosition(float fDeltaLeft,
float fDeltaTop,
float fDeltaBottom)
Unused function.
void ChangeAlpha(float fDeltaAlpha)
Unused function.
class Chart: public AlterableObject
Abstract class that implements the skeleton of a chart.
class AlterableObject
Abstract class that implements the skeleton of an alterable object, i.e.
Close