0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-25 17:14:40 +03:00
LimeReport/limereport/items/charts/lrgridlineschart.h

18 lines
407 B
C
Raw Normal View History

2022-01-25 21:46:14 +03:00
#ifndef GRIDLINESCHART_H
#define GRIDLINESCHART_H
#include "lrlineschart.h"
namespace LimeReport {
class GridLinesChart: public LinesChart {
2022-01-25 21:46:14 +03:00
public:
GridLinesChart(ChartItem* chartItem): LinesChart(chartItem) { }
void paintChart(QPainter* painter, QRectF chartRect);
2022-01-25 21:46:14 +03:00
private:
void paintSerialLines(QPainter* painter, QRectF barsRect);
2022-01-25 21:46:14 +03:00
};
} // namespace LimeReport
2022-01-25 21:46:14 +03:00
#endif // GRIDLINESCHART_H