2020-01-11 02:11:55 +03:00
|
|
|
#ifndef HORIZONTALBARCHART_H
|
|
|
|
#define HORIZONTALBARCHART_H
|
|
|
|
|
|
|
|
#include "lrchartitem.h"
|
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
namespace LimeReport {
|
2020-01-11 02:11:55 +03:00
|
|
|
|
2024-09-04 17:31:16 +03:00
|
|
|
class HorizontalBarChart: public AbstractBarChart {
|
2020-01-11 02:11:55 +03:00
|
|
|
public:
|
2024-09-04 17:31:16 +03:00
|
|
|
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
|