##// END OF EJS Templates
Updated license headers...
Updated license headers Updated new license headers and added missing ones to qdoc files. Change-Id: I9f2af2a8b44c3ebf19fd494628dfaa8775a47b06 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2740:377e4516d036
r2740:377e4516d036
Show More
multivalueaxis4.cpp
76 lines | 2.3 KiB | text/x-c | CppLexer
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 /****************************************************************************
**
Titta Heikkala
Update copyright year...
r2688 ** Copyright (C) 2014 Digia Plc
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 ** All rights reserved.
Titta Heikkala
Updated license headers...
r2740 ** For any questions to Digia, please use contact form at http://qt.io
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
** agreement between you and Digia.
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 **
****************************************************************************/
#include "charts.h"
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QChart>
#include <QtCharts/QLineSeries>
#include <QtCharts/QValueAxis>
#include <QtCharts/QCategoryAxis>
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140
class MultiValueAxis4: public Chart
{
public:
QString name()
{
return "AxisSet 4";
}
QString category()
{
Michal Klocek
Adds mulitbarvalueaxis eample to charviewer
r2143 return QObject::tr("MultiAxis");
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 }
QString subCategory()
{
return "MultiValueAxis";
}
QChart *createChart(const DataTable &table)
{
QChart *chart = new QChart();
QValueAxis *axisX;
QValueAxis *axisY;
chart->setTitle("MultiValueAxis4");
QString name("Series");
int nameIndex = 1;
foreach (DataList list, table) {
QLineSeries *series = new QLineSeries(chart);
foreach (Data data, list)
series->append(data.first);
series->setName(name + QString::number(nameIndex));
chart->addSeries(series);
axisX = new QValueAxis();
axisX->setLinePenColor(series->pen().color());
Michal Klocek
Refactors internals...
r2273 axisX->setTitleText("ValueAxis for series" + QString::number(nameIndex));
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 axisY = new QValueAxis();
axisY->setLinePenColor(series->pen().color());
Michal Klocek
Refactors internals...
r2273 axisY->setTitleText("ValueAxis for series" + QString::number(nameIndex));
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140
Michal Klocek
Refactors internals...
r2273 chart->addAxis(axisX, nameIndex % 2?Qt::AlignTop:Qt::AlignBottom);
chart->addAxis(axisY, nameIndex % 2?Qt::AlignRight:Qt::AlignLeft);
series->attachAxis(axisX);
series->attachAxis(axisY);
Michal Klocek
Adds more mulivalueaxis charts to chartviewer
r2140 nameIndex++;
}
return chart;
}
};
DECLARE_CHART(MultiValueAxis4);