0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 08:34:38 +03:00
LimeReport/limereport/items/charts/lrverticalbarchart.h

20 lines
543 B
C
Raw Permalink Normal View History

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