mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 05:18:11 +03:00
18 lines
380 B
C++
18 lines
380 B
C++
#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
|