##// END OF EJS Templates
Fix vanishing labels for first and last ticks....
Fix vanishing labels for first and last ticks. Extra space must be reserved by layout for the axes that have wide labels for first or last tick. Changed the logic how axis sizeHint is interpreted to make the previously irrelevant height or width (depending on orientation) of the sizeHint to indicate how far the widest label extends past the first/last tick, and adjust the grid size accordingly in layout. Reviewed-by: Mika Salmela

File last commit:

r2442:7fe25bf61dfb
r2443:5b27b7b1d72a RC2_1.2.1
Show More
gettingstarted.qdoc
66 lines | 1.4 KiB | text/plain | TextLexer
/ doc / src / gettingstarted.qdoc
/*!
\page gettingstarted.html
\title QtCommercial Charts getting started
\keyword Introduction
Compiling:
\code
qmake CONFIG+=release
make
make install
\endcode
Depending on the OS and the compiler you are using "make" might need to be replaced with another command like: nmake, mingw32-make, etc.
To uninstall the QtCommercialCharts run:
\code
make uninstall
\endcode
Compiling as a static library (lib only):
\code
qmake CONFIG+=staticlib
make
make install
\endcode
Building both debug and release at the same time:
\code
qmake CONFIG+="debug_and_release build_all"
make
make install
\endcode
Please take a note that the \i build_all option is necessary for the install to work correctly. Otherwise it will not install both versions.
\bold {New project}
Create a new project in a usual way and then add to your project's *.pro file following line:
\code
CONFIG += qtcommercialchart
\endcode
\bold {Widget project}
To use the QCharts classes add QtCommercialChart namespace macro in your header file.
\code
#include<QWidget>
#include<QChartView>
QTCOMMERCIALCHART_USE_NAMESPACE
class ExampleWidget : public QWidget
\endcode
\bold {QML project}
Add an import line to your *.qml file:
\code
import QtCommercial.Chart 1.2
\endcode
\raw HTML
\endraw
*/