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