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
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
namespace LimeReport {
|
2020-01-11 02:11:55 +03:00
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
class VerticalBarChart: public LinesChart {
|
2020-01-11 02:11:55 +03:00
|
|
|
public:
|
2024-09-04 17:31:16 +03:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
} // namespace LimeReport
|
2020-01-11 02:11:55 +03:00
|
|
|
|
|
|
|
#endif // VERTICALBARCHART_H
|