##// END OF EJS Templates
QLogValueAxis added. Log domain missing
QLogValueAxis added. Log domain missing

File last commit:

r2255:31c21c535136
r2274:2d2a1c8b0f36
Show More
widget.h
32 lines | 489 B | text/x-c | CLexer
Marek Rosa
Added callout example (Drawing on top of chart)
r2150 #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QChart>
class QGraphicsScene;
class QGraphicsView;
Marek Rosa
Added hovered signal to QLineSeries. Updated callout example
r2255 class Callout;
Marek Rosa
Added callout example (Drawing on top of chart)
r2150
QTCOMMERCIALCHART_USE_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
Marek Rosa
Added hovered signal to QLineSeries. Updated callout example
r2255 void keepCallout();
void tooltip(QPointF point, bool state);
Marek Rosa
Added callout example (Drawing on top of chart)
r2150
private:
QGraphicsScene *m_scene;
QChart *m_chart;
QGraphicsView *m_view;
Marek Rosa
Added hovered signal to QLineSeries. Updated callout example
r2255 Callout *m_tooltip;
Marek Rosa
Added callout example (Drawing on top of chart)
r2150 };
#endif // WIDGET_H