0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-03 20:04:43 +03:00

Add grid chart

This commit is contained in:
Emil Sawicki
2022-01-25 19:46:14 +01:00
parent b0f45f55a4
commit fdee26a2b8
5 changed files with 214 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
#ifndef GRIDLINESCHART_H
#define GRIDLINESCHART_H
#include "lrlineschart.h"
namespace LimeReport {
class GridLinesChart : public LinesChart{
public:
GridLinesChart(ChartItem* chartItem):LinesChart(chartItem){}
void paintChart(QPainter *painter, QRectF chartRect);
private:
void paintSerialLines(QPainter *painter, QRectF barsRect);
};
}
#endif // GRIDLINESCHART_H