0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 08:34:38 +03:00
LimeReport/limereport/items/charts/lrhorizontalbarchart.h

18 lines
433 B
C
Raw Normal View History

2020-01-11 02:11:55 +03:00
#ifndef HORIZONTALBARCHART_H
#define HORIZONTALBARCHART_H
#include "lrchartitem.h"
namespace LimeReport {
2020-01-11 02:11:55 +03:00
class HorizontalBarChart: public AbstractBarChart {
2020-01-11 02:11:55 +03:00
public:
HorizontalBarChart(ChartItem* chartItem): AbstractBarChart(chartItem) { }
void paintChart(QPainter* painter, QRectF chartRect);
void paintHorizontalBars(QPainter* painter, QRectF barsRect);
2020-01-11 02:11:55 +03:00
};
} // namespace LimeReport
#endif // HORIZONTALBARCHART_H