diff --git a/demos/demos.pro b/demos/demos.pro index 4c66307..2710feb 100644 --- a/demos/demos.pro +++ b/demos/demos.pro @@ -17,8 +17,7 @@ SUBDIRS += piechartcustomization \ contains(QT_CONFIG, opengl) { SUBDIRS += chartthemes \ - qmloscilloscope \ - chartviewer + qmloscilloscope } else { message("OpenGL not available. Some demos are disabled") } diff --git a/doc/src/examples-datetimeaxis.qdoc b/doc/src/examples-datetimeaxis.qdoc index 283a5c7..ae57982 100644 --- a/doc/src/examples-datetimeaxis.qdoc +++ b/doc/src/examples-datetimeaxis.qdoc @@ -22,7 +22,7 @@ Becasue we use QLineSeries calling createDefaultAxes will create QValueAxis both as X and Y axis. To use QDateTimeAxis we need to set it manually to the chart. First the instance of QDateTimeAxis is created, then the number of ticks that are to be shown is set. The number of sun spots is provided as an average for the month therfore we don't need the axis labels to contain the information about the time and the day. This is achived by setting a custom label format. - Please refer to QDateTime::toString() method documntation to learn about the avaiable format options. + Please refer to QDateTime::toString() method documentation to learn about the avaiable format options. \snippet ../examples/datetimeaxis/main.cpp 4