mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 05:18:11 +03:00
20 lines
543 B
C++
20 lines
543 B
C++
#ifndef PIECHART_H
|
|
#define PIECHART_H
|
|
|
|
#include "lrchartitem.h"
|
|
|
|
namespace LimeReport{
|
|
|
|
class PieChart : public AbstractChart{
|
|
public:
|
|
PieChart(ChartItem* chartItem):AbstractChart(chartItem){}
|
|
QSizeF calcChartLegendSize(const QFont &font, qreal maxWidth = 0);
|
|
void paintChart(QPainter *painter, QRectF chartRect);
|
|
void paintChartLegend(QPainter *painter, QRectF legendRect);
|
|
protected:
|
|
void drawPercent(QPainter *painter, QRectF chartRect, qreal startAngle, qreal angle);
|
|
};
|
|
|
|
} // namespace LimeReport
|
|
#endif // PIECHART_H
|