##// END OF EJS Templates
Combines color,axis,custom into one example
Combines color,axis,custom into one example

File last commit:

r763:4467255a8e44
r767:ab751f5c733f
Show More
percentbarchartitem.cpp
81 lines | 2.7 KiB | text/x-c | CppLexer
/ src / barchart / percentbarchartitem.cpp
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 #include "percentbarchartitem_p.h"
sauimone
renamed bar.h to bar_p.h
r118 #include "bar_p.h"
sauimone
Floating values to bar charts
r263 #include "barvalue_p.h"
sauimone
Added pen & brush to QBarSet
r214 #include "qbarset.h"
sauimone
percent bar chart
r101 #include <QDebug>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 PercentBarChartItem::PercentBarChartItem(QBarSeries *series, ChartPresenter *presenter) :
Michal Klocek
Refactors chartitem...
r677 BarChartItem(series, presenter)
sauimone
percent bar chart
r101 {
}
sauimone
animations to stacked and percent barchart
r694 QVector<QRectF> PercentBarChartItem::calculateLayout()
sauimone
percent bar chart
r101 {
sauimone
animations to stacked and percent barchart
r694 QVector<QRectF> layout;
sauimone
bug fix in bar charts. Crashed, if layout was set before data. Also integrated to test app.
r165
sauimone
Fixed layout for barcharts
r473 // Use temporary qreals for accurancy (we might get some compiler warnings... :)
Michal Klocek
Refactors barchart axis hadnling...
r679 qreal width = geometry().width();
qreal height = geometry().height();
sauimone
minor code review fixes, part n
r763 qreal categoryCount = m_series->categoryCount();
qreal barWidth = width / (m_series->categoryCount() * 2);
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 qreal xStep = width / categoryCount;
qreal xPos = xStep / 2 - barWidth / 2;
sauimone
percent bar chart
r101
sauimone
Fixed layout for barcharts
r473 int itemIndex(0);
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 for (int category = 0; category < categoryCount; category++) {
sauimone
minor code review fixes, part n
r763 qreal colSum = m_series->categorySum(category);
Michal Klocek
Refactors barchart axis hadnling...
r679 qreal scale = (height / colSum);
qreal yPos = height;
sauimone
minor code review fixes, part n
r763 for (int set=0; set < m_series->barsetCount(); set++) {
qreal barHeight = m_series->valueAt(set, category) * scale;
Bar* bar = m_bars.at(itemIndex);
bar->setPen(m_series->barsetAt(set)->pen());
bar->setBrush(m_series->barsetAt(set)->brush());
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 QRectF rect(xPos, yPos-barHeight, barWidth, barHeight);
sauimone
animations to stacked and percent barchart
r694 layout.append(rect);
sauimone
percent bar chart
r101 itemIndex++;
yPos -= barHeight;
}
xPos += xStep;
}
sauimone
cleanup on barseries. removed old commented out separator code
r654
sauimone
Floating values to bar charts
r263 // Position floating values
itemIndex = 0;
Michal Klocek
Refactors barchart axis hadnling...
r679 xPos = (width/categoryCount);
sauimone
minor code review fixes, part n
r763 for (int category=0; category < m_series->categoryCount(); category++) {
Michal Klocek
Refactors barchart axis hadnling...
r679 qreal yPos = height;
sauimone
minor code review fixes, part n
r763 qreal colSum = m_series->categorySum(category);
Michal Klocek
Refactors barchart axis hadnling...
r679 qreal scale = (height / colSum);
sauimone
minor code review fixes, part n
r763 for (int set=0; set < m_series->barsetCount(); set++) {
qreal barHeight = m_series->valueAt(set,category) * scale;
BarValue* value = m_floatingValues.at(itemIndex);
sauimone
Floating values to bar charts
r263
sauimone
minor code review fixes, part n
r763 QBarSet* barSet = m_series->barsetAt(set);
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 value->resize(100, 50); // TODO: proper layout for this.
value->setPos(xPos, yPos-barHeight / 2);
sauimone
better use of gradients in barcharts
r512 value->setPen(barSet->floatingValuePen());
sauimone
Floating values to bar charts
r263
sauimone
minor code review fixes, part n
r763 if (m_series->valueAt(set,category) != 0) {
int p = m_series->percentageAt(set,category) * 100;
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 QString vString(QString::number(p));
vString.truncate(3);
sauimone
updated barchart examples. minor fixes
r276 vString.append("%");
value->setValueString(vString);
} else {
value->setValueString(QString(""));
}
sauimone
Floating values to bar charts
r263
itemIndex++;
yPos -= barHeight;
}
xPos += xStep;
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 }
sauimone
animations to stacked and percent barchart
r694 return layout;
sauimone
percent bar chart
r101 }
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 #include "moc_percentbarchartitem_p.cpp"
sauimone
moved tooltip to presenter
r288
sauimone
percent bar chart
r101 QTCOMMERCIALCHART_END_NAMESPACE