##// END OF EJS Templates
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).
Remove scaledomain ect. warnings from pie. Not going to be implemented (for now at least).

File last commit:

r1008:e02fb893688e
r1191:6223c1214e9d
Show More
main.cpp
116 lines | 3.8 KiB | text/x-c | CppLexer
Jani Honkonen
Add/modify license headers
r830 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430 #include <QtGui/QApplication>
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 #include <QMainWindow>
Jani Honkonen
include headers without the .h in examples
r838 #include <QChartView>
#include <QBarSet>
sauimone
turned legend on in barchart examples
r891 #include <QLegend>
sauimone
splitted barchartdrilldown example to separate files
r903 #include "drilldownseries.h"
#include "drilldownchart.h"
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
QTCOMMERCIALCHART_USE_NAMESPACE
int main(int argc, char *argv[])
{
Jani Honkonen
Add all examples to docs
r919 //! [1]
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 QApplication a(argc, argv);
QMainWindow window;
Jani Honkonen
Add all examples to docs
r919 //! [1]
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
Jani Honkonen
Add all examples to docs
r919 //! [2]
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 DrilldownChart* drilldownChart = new DrilldownChart();
drilldownChart->setTheme(QChart::ChartThemeBlueIcy);
drilldownChart->setAnimationOptions(QChart::SeriesAnimations);
Jani Honkonen
Add all examples to docs
r919 //! [2]
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
splitted barchartdrilldown example to separate files
r903 //! [3]
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 // Define categories
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430 QStringList months;
sauimone
Documentation for stacked barchart drilldown example
r462 months << "May" << "Jun" << "Jul" << "Aug" << "Sep";
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430 QStringList weeks;
weeks << "week 1" << "week 2" << "week 3" << "week 4";
QStringList plants;
plants << "Habanero" << "Lemon Drop" << "Starfish" << "Aji Amarillo";
sauimone
splitted barchartdrilldown example to separate files
r903 //! [3]
sauimone
Drilldown example using stacked barchart.
r449
sauimone
splitted barchartdrilldown example to separate files
r903 //! [4]
sauimone
Drilldown example using stacked barchart.
r449 // Create drilldown structure
DrilldownBarSeries* seasonSeries = new DrilldownBarSeries(months, drilldownChart);
Tero Ahola
Fixed build error caused by QSeries name change
r733 seasonSeries->setName("Crop by month - Season");
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
sauimone
Drilldown example using stacked barchart.
r449 // Each month in season series has drilldown series for weekly data
foreach (QString month, months) {
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
Drilldown example using stacked barchart.
r449 // Create drilldown series for every week
sauimone
updating drilldown example. Needs some more thinking
r438 DrilldownBarSeries* weeklySeries = new DrilldownBarSeries(weeks, drilldownChart);
sauimone
Documentation for stacked barchart drilldown example
r462 seasonSeries->mapDrilldownSeries(month, weeklySeries);
sauimone
updating drilldown example. Needs some more thinking
r438
sauimone
Drilldown example using stacked barchart.
r449 // Drilling down from weekly data brings us back to season data.
foreach (QString week, weeks) {
sauimone
Documentation for stacked barchart drilldown example
r462 weeklySeries->mapDrilldownSeries(week, seasonSeries);
Tero Ahola
Fixed build error caused by QSeries name change
r733 weeklySeries->setName(QString("Crop by week - " + month));
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430 }
sauimone
Drilldown example using stacked barchart.
r449 // Use right click signal to implement drilldown
sauimone
barchart: removed mousebuttons from clicked signal. removed selected signal. unified internal signal naming in barset and barseries private
r1008 QObject::connect(weeklySeries, SIGNAL(clicked(QBarSet*,QString)), drilldownChart, SLOT(handleClicked(QBarSet*,QString)));
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430 }
sauimone
Documentation for stacked barchart drilldown example
r462
// Enable drilldown from season series using right click.
sauimone
barchart: removed mousebuttons from clicked signal. removed selected signal. unified internal signal naming in barset and barseries private
r1008 QObject::connect(seasonSeries, SIGNAL(clicked(QBarSet*,QString)), drilldownChart, SLOT(handleClicked(QBarSet*,QString)));
sauimone
splitted barchartdrilldown example to separate files
r903 //! [4]
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
splitted barchartdrilldown example to separate files
r903 //! [5]
sauimone
Drilldown example using stacked barchart.
r449 // Fill monthly and weekly series with data
sauimone
updating drilldown example. Needs some more thinking
r438 foreach (QString plant, plants) {
sauimone
Drilldown example using stacked barchart.
r449 QBarSet* monthlyCrop = new QBarSet(plant);
foreach (QString month, months) {
QBarSet* weeklyCrop = new QBarSet(plant);
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 foreach (QString week, weeks )
sauimone
updating drilldown example. Needs some more thinking
r438 *weeklyCrop << (qrand() % 20);
sauimone
Documentation for stacked barchart drilldown example
r462 // Get the drilldown series from season series and add crop to it.
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 seasonSeries->drilldownSeries(month)->appendBarSet(weeklyCrop);
sauimone
barchart pimpl part 1
r934 *monthlyCrop << weeklyCrop->sum();
sauimone
updating drilldown example. Needs some more thinking
r438 }
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 seasonSeries->appendBarSet(monthlyCrop);
sauimone
updating drilldown example. Needs some more thinking
r438 }
sauimone
splitted barchartdrilldown example to separate files
r903 //! [5]
sauimone
Drilldown example using stacked barchart.
r449
sauimone
splitted barchartdrilldown example to separate files
r903 //! [6]
sauimone
Drilldown example using stacked barchart.
r449 // Show season series in initial view
drilldownChart->changeSeries(seasonSeries);
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 drilldownChart->setTitle(seasonSeries->name());
sauimone
splitted barchartdrilldown example to separate files
r903 //! [6]
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
splitted barchartdrilldown example to separate files
r903 //! [7]
Michal Klocek
Renames Grid to GridLine
r535 drilldownChart->axisX()->setGridLineVisible(false);
Tero Ahola
Default to true in boolean setters
r987 drilldownChart->axisY()->setNiceNumbersEnabled(true);
sauimone
turned legend on in barchart examples
r891 drilldownChart->legend()->setVisible(true);
Jani Honkonen
Spelling fix QLegend::setAlignmnent -> setAlignment
r907 drilldownChart->legend()->setAlignment(QLegend::AlignmentBottom);
sauimone
splitted barchartdrilldown example to separate files
r903 //! [7]
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
Jani Honkonen
Make stackedbarchartdrilldown compile
r829 QChartView *chartView = new QChartView(drilldownChart);
window.setCentralWidget(chartView);
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 window.resize(400, 300);
window.show();
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 return a.exec();
}