##// END OF EJS Templates
fixed typo in doc
fixed typo in doc

File last commit:

r971:29cedae3d4be
r1448:3be0886b7d70
Show More
examples-percentbarchart.qdoc
17 lines | 754 B | text/plain | TextLexer
/ doc / src / examples-percentbarchart.qdoc
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 /*!
Tero Ahola
Fixing example documentation
r500 \example examples/percentbarchart
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387 \title PercentBarChart Example
\subtitle
Tero Ahola
Updated bar chart documentation
r971 The example shows how to create simple percent bar chart. Percent bar chart shows the data in set as percentage of
all sets, per category.
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
Tero Ahola
Updated bar chart documentation
r971 \image examples_percentbarchart.png
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
Tero Ahola
Updated bar chart documentation
r971 Creating percent bar chart is just like creating a regular \l {BarChart Example} {bar chart}, except that for a
percent bar chart, we use QPercentBarSeries api instead of QBarSeries. Also, in the
\l {BarChart Example} {bar chart} we used nice numbers algorithm to make the y axis numbering look better. With
percent bar chart there is no need for that, because the maximum y-axis value is always 100.
sauimone
Updated barchart examples and documentation. Also bug fix to barchart model
r387
sauimone
fixed example paths in barchart documentation
r492 \snippet ../examples/percentbarchart/main.cpp 3
Tero Ahola
Updated bar chart documentation
r971 */