##// END OF EJS Templates
Switched the z-order of axis to be below series...
Switched the z-order of axis to be below series The axis was changed to be below series to make it possible to get clicked signals from series when a data point is overlapping an axis. If the axis is on top of series, you cannot get clicked events from such data points at all. It should not be a problem if you don't get a clicked event from the axis in this case; you can always click on other position on top of the axis (except in the rare use case that the axis is fully covered by data points of a series).

File last commit:

r1697:b1c06caff815
r1790:9e99014de1f1
Show More
widget.h
28 lines | 403 B | text/x-c | CLexer
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693 #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 #include <QPieSeries>
class QTimer;
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693
QTCOMMERCIALCHART_USE_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void updateRotation();
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 void explodeSlice(bool exploded);
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693
private:
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 QList<QPieSeries *> m_donuts;
QTimer *updateTimer;
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693 };
#endif // WIDGET_H