mirror of
https://github.com/fralx/LimeReport.git
synced 2025-10-03 20:04:43 +03:00
ChartItem has been refactored
This commit is contained in:
19
limereport/items/charts/lrpiechart.h
Normal file
19
limereport/items/charts/lrpiechart.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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);
|
||||
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
|
Reference in New Issue
Block a user