mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
0fca7169d3
except those placed in 3rdparty directories.
18 lines
407 B
C++
18 lines
407 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);
|
|
};
|
|
} // namespace LimeReport
|
|
|
|
#endif // GRIDLINESCHART_H
|