##// END OF EJS Templates
added stacked bar chart
added stacked bar chart

File last commit:

r94:6732dc48e5e9
r94:6732dc48e5e9
Show More
barchartseries.cpp
79 lines | 1.8 KiB | text/x-c | CppLexer
/ src / barchart / barchartseries.cpp
sauimone
Improved bar chart series
r71 #include <QDebug>
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 #include "barchartseries.h"
sauimone
BarGroup and Bar as ChartItems instead of GraphicItems
r74 #include "bargroup.h"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
Refactored series creation.
r62 BarChartSeries::BarChartSeries(QObject *parent)
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 : QChartSeries(parent)
{
}
sauimone
Improved bar chart series
r71 bool BarChartSeries::setData(QAbstractItemModel* model)
sauimone
Refactored series creation.
r62 {
sauimone
Improved bar chart series
r71 mModel = model;
sauimone
Refactored series creation.
r62 }
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 int BarChartSeries::min()
{
sauimone
Improved bar chart series
r71 Q_ASSERT(mModel->rowCount() > 0);
Q_ASSERT(mModel->columnCount() > 0);
sauimone
Refactored series creation.
r62
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 // TODO: make min and max members and update them when data changes.
// This is slower since they are checked every time, even if data is same since previous call.
sauimone
added stacked bar chart
r94 int min = INT_MAX;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
Improved bar chart series
r71 for (int i=0; i <mModel->rowCount(); i++) {
for(int j=0; j<mModel->columnCount(); j++) {
sauimone
added stacked bar chart
r94 int temp = mModel->data(mModel->index(i,j)).toInt();
sauimone
Improved bar chart series
r71 if (temp < min) {
min = temp;
}
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
}
return min;
}
int BarChartSeries::max()
{
sauimone
Improved bar chart series
r71 Q_ASSERT(mModel->rowCount() > 0);
Q_ASSERT(mModel->columnCount() > 0);
sauimone
Refactored series creation.
r62
sauimone
Improved bar chart series
r71 // TODO: make min and max members and update them when data changes.
// This is slower since they are checked every time, even if data is same since previous call.
sauimone
added stacked bar chart
r94 int max = INT_MIN;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
Improved bar chart series
r71 for (int i=0; i <mModel->rowCount(); i++) {
for(int j=0; j<mModel->columnCount(); j++) {
sauimone
added stacked bar chart
r94 int temp = mModel->data(mModel->index(i,j)).toInt();
sauimone
Improved bar chart series
r71 if (temp > max) {
max = temp;
}
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
}
return max;
}
sauimone
Improved bar chart series
r71
int BarChartSeries::countSeries()
{
return mModel->rowCount();
}
sauimone
added stacked bar chart
r94 int BarChartSeries::countColumns()
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
Improved bar chart series
r71 return mModel->columnCount();
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
sauimone
Improved bar chart series
r71 int BarChartSeries::countTotalItems()
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
Improved bar chart series
r71 return mModel->rowCount() * mModel->columnCount();
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
sauimone
added stacked bar chart
r94 int BarChartSeries::valueAt(int row, int column)
sauimone
Improved bar chart series
r71 {
sauimone
added stacked bar chart
r94 return mModel->data(mModel->index(row,column)).toInt();
sauimone
Improved bar chart series
r71 }
#include "moc_barchartseries.cpp"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 QTCOMMERCIALCHART_END_NAMESPACE