Reference documentation
|
The AbstractChartDelegate class provides an abstract base for every chart delegate. More...
Public Member Functions | |
virtual void | paint (QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const =0 |
Paints the data of the index relative to the shape set in the SerieFormat corresponding to the index column. | |
virtual void | paintDisabled (QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const =0 |
Paints the delegate's disabled render. More... | |
virtual void | paintEnabled (QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const =0 |
Paints the delegate's enabled render. More... | |
The AbstractChartDelegate class provides an abstract base for every chart delegate.
The AbstractChartDelegate class provides display and editing facilities for data items in a chart view.
|
pure virtual |
Paints the delegate's disabled render.
An item is considered as disabled when the selectionModel is not empty and doesn't contain the index.
Implemented in BarDelegate, and DotDelegate.
|
pure virtual |
Paints the delegate's enabled render.
An item is considered as enabled when the selectionModel is empty or contains an index in the column of index.
Implemented in BarDelegate, and DotDelegate.