##// END OF EJS Templates
Adjust piechartdrilldown to look nicer with legend
Jani Honkonen -
r906:705c29daa707
parent child
Show More
@@ -28,6 +28,7 DrilldownSlice::DrilldownSlice(qreal value, QString prefix, QSeries* drilldownSe
28 28 {
29 29 setValue(value);
30 30 updateLabel();
31 setLabelFont(QFont("Arial", 8));
31 32 connect(this, SIGNAL(changed()), this, SLOT(updateLabel()));
32 33 connect(this, SIGNAL(hoverEnter()), this, SLOT(showHighlight()));
33 34 connect(this, SIGNAL(hoverLeave()), this, SLOT(hideHighlight()));
@@ -49,7 +49,7 int main(int argc, char *argv[])
49 49 QList<QString> months;
50 50 months << "Jan" << "Feb" << "Mar" << "Apr" << "May" << "Jun" << "Jul" << "Aug" << "Sep" << "Oct" << "Nov" << "Dec";
51 51 QList<QString> names;
52 names << "Jane" << "John" << "Axel" << "Mary" << "Samantha" << "Bob";
52 names << "Jane" << "John" << "Axel" << "Mary" << "Susan" << "Bob";
53 53
54 54 foreach (QString name, names) {
55 55 QPieSeries* series = new QPieSeries(&window);
@@ -70,7 +70,7 int main(int argc, char *argv[])
70 70 QChartView* chartView = new QChartView(chart);
71 71 chartView->setRenderHint(QPainter::Antialiasing);
72 72 window.setCentralWidget(chartView);
73 window.resize(800, 600);
73 window.resize(800, 500);
74 74 window.show();
75 75
76 76 return a.exec();
General Comments 0
You need to be logged in to leave comments. Login now