2020-01-11 02:11:55 +03:00
|
|
|
#ifndef VERTICALBARCHART_H
|
|
|
|
#define VERTICALBARCHART_H
|
|
|
|
|
2022-01-18 12:56:05 +03:00
|
|
|
#include "lrlineschart.h"
|
2020-01-11 02:11:55 +03:00
|
|
|
|
|
|
|
namespace LimeReport{
|
|
|
|
|
2022-01-18 12:56:05 +03:00
|
|
|
class VerticalBarChart: public LinesChart{
|
2020-01-11 02:11:55 +03:00
|
|
|
public:
|
2022-01-18 12:56:05 +03:00
|
|
|
VerticalBarChart(ChartItem* chartItem):LinesChart(chartItem){}
|
2020-01-11 02:11:55 +03:00
|
|
|
void paintChart(QPainter *painter, QRectF chartRect);
|
|
|
|
// void paintVerticalGrid(QPainter *painter, QRectF gridRect);
|
|
|
|
void paintVerticalBars(QPainter *painter, QRectF barsRect);
|
|
|
|
void paintSerialLines(QPainter *painter, QRectF barsRect);
|
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace LimeReport
|
|
|
|
|
|
|
|
#endif // VERTICALBARCHART_H
|