valueaxis.qdocinc
17 lines
| 405 B
| text/plain
|
TextLexer
Titta Heikkala
|
r2639 | \inherits AbstractAxis | ||
\brief The ValueAxis element is used for manipulating chart's axes | ||||
ValueAxis can be setup to show axis line with tick marks, grid lines and shades. | ||||
Values of axis are drawn to position of ticks | ||||
Example about using ValueAxis: | ||||
\code | ||||
ChartView { | ||||
ValueAxis { | ||||
id: xAxis | ||||
min: 0 | ||||
max: 10 | ||||
} | ||||
// Add a few series... | ||||
} | ||||
\endcode | ||||