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
Андрей Лухнов 0fca7169d3 Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
2024-09-19 21:09:38 +03:00

20 lines
543 B
C++

#ifndef VERTICALBARCHART_H
#define VERTICALBARCHART_H
#include "lrlineschart.h"
namespace LimeReport {
class VerticalBarChart: public LinesChart {
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);
};
} // namespace LimeReport
#endif // VERTICALBARCHART_H