##// END OF EJS Templates
Adds back diagram class to docs
Adds back diagram class to docs

File last commit:

r971:29cedae3d4be
r1089:15730c540d76
Show More
examples-stackedbarchart.qdoc
15 lines | 571 B | text/plain | TextLexer
/ doc / src / examples-stackedbarchart.qdoc
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 /*!
Tero Ahola
Fixing example documentation
r500 \example examples/stackedbarchart
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 \title StackedBarChart Example
\subtitle
Tero Ahola
Updated bar chart documentation
r971 The example shows how to create simple stacked bar chart. Stacked bar chart shows the data in sets as bars that are
stacked on top of each other. The stacking is done per category.
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
Tero Ahola
Updated bar chart documentation
r971 \image examples_stackedbarchart.png
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
Tero Ahola
Updated bar chart documentation
r971 Creating stacked bar chart is just like creating a regular \l {BarChart Example} {bar chart}, except that for a
stacked bar chart, we use QStackedBarSeries api instead of QBarSeries.
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
sauimone
fixed example paths in barchart documentation
r492 \snippet ../examples/stackedbarchart/main.cpp 3
Tero Ahola
Updated bar chart documentation
r971 */