mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-26 01:24:39 +03:00
20 lines
544 B
C++
20 lines
544 B
C++
#ifndef VERTICALBARCHART_H
|
|
#define VERTICALBARCHART_H
|
|
|
|
#include "lrchartitem.h"
|
|
|
|
namespace LimeReport{
|
|
|
|
class VerticalBarChart: public AbstractBarChart{
|
|
public:
|
|
VerticalBarChart(ChartItem* chartItem):AbstractBarChart(chartItem){}
|
|
void paintChart(QPainter *painter, QRectF chartRect);
|
|
// void paintVerticalGrid(QPainter *painter, QRectF gridRect);
|
|
void paintVerticalBars(QPainter *painter, QRectF barsRect);
|
|
void paintSerialLines(QPainter *painter, QRectF barsRect);
|
|
};
|
|
|
|
} //namespace LimeReport
|
|
|
|
#endif // VERTICALBARCHART_H
|