diff --git a/doc/src/classes.qdoc b/doc/src/classes.qdoc
index 5426342..b7d77d5 100644
--- a/doc/src/classes.qdoc
+++ b/doc/src/classes.qdoc
@@ -13,6 +13,7 @@
series->add(2, 4);
...
chartView->chart()->addSeries(series);
+ chartView->chart()->createDefaultAxes();
\endcode
\raw HTML
@@ -29,11 +30,11 @@
- QChart
+ - QChartView
- QAbstractAxis
- QValuesAxis
- QBarCategoriesAxis
- - QIntervalAxis
- - QChartView
+ - QIntervalAxis
- QLegend
- QAbstractSeries
- QChartGlobal
diff --git a/doc/src/examples-areachart.qdoc b/doc/src/examples-areachart.qdoc
index d123881..d24ffdf 100644
--- a/doc/src/examples-areachart.qdoc
+++ b/doc/src/examples-areachart.qdoc
@@ -19,7 +19,7 @@
\snippet ../examples/areachart/main.cpp 3
- In the end we create QChartView instance, set title, set anti-aliasing and add area series. We also set the specific range for axes.
+ In the end we create QChartView instance, set title, set anti-aliasing and add area series. We also create the default axes and specify the ranges on them.
\snippet ../examples/areachart/main.cpp 4
diff --git a/doc/src/examples-linechart.qdoc b/doc/src/examples-linechart.qdoc
index fdcab61..2f78871 100644
--- a/doc/src/examples-linechart.qdoc
+++ b/doc/src/examples-linechart.qdoc
@@ -15,7 +15,7 @@
\snippet ../examples/linechart/main.cpp 2
- To present the data on the char we need QChart instance. We add the series to it and set the title of the chart.
+ To present the data on the char we need QChart instance. We add the series to it, create the default axes and set the title of the chart.
\snippet ../examples/linechart/main.cpp 3
|