mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-26 01:24:39 +03:00
18 lines
472 B
C
18 lines
472 B
C
|
#ifndef LINESCHART_H
|
||
|
#define LINESCHART_H
|
||
|
|
||
|
#include "lrchartitem.h"
|
||
|
|
||
|
namespace LimeReport {
|
||
|
class LinesChart: public AbstractBarChart{
|
||
|
public:
|
||
|
LinesChart(ChartItem* chartItem):AbstractBarChart(chartItem){}
|
||
|
void paintChart(QPainter *painter, QRectF chartRect);
|
||
|
private:
|
||
|
void paintSerialLines(QPainter *painter, QRectF barsRect);
|
||
|
void drawDesignMode(QPainter *painter, qreal hStep, qreal vStep, qreal topShift, QRectF barsRect);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // LINESCHART_H
|