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/lrverticalbarchart.h
Normal file
19
limereport/items/charts/lrverticalbarchart.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef VERTICALBARCHART_H
|
||||
#define VERTICALBARCHART_H
|
||||
|
||||
#include "lrchartitem.h"
|
||||
|
||||
namespace LimeReport{
|
||||
|
||||
class VerticalBarChart: public AbstractBarChart{
|
||||
public:
|
||||
VerticalBarChart(ChartItem* chartItem):AbstractBarChart(chartItem){}
|
||||
void paintChart(QPainter *painter, QRectF chartRect);
|
||||
// void paintVerticalGrid(QPainter *painter, QRectF gridRect);
|
||||
void paintVerticalBars(QPainter *painter, QRectF barsRect);
|
||||
void paintSerialLines(QPainter *painter, QRectF barsRect);
|
||||
};
|
||||
|
||||
} //namespace LimeReport
|
||||
|
||||
#endif // VERTICALBARCHART_H
|
Reference in New Issue
Block a user