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