1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/**
* Copyright (C) 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
*
* This file is part of the KD Chart library.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "mainwindow.h"
#include <KChartChart>
#include <KChartDatasetProxyModel>
#include <KChartAbstractCoordinatePlane>
#include <KChartBarDiagram>
#include <KChartTextAttributes>
#include <KChartDataValueAttributes>
#include <KChartThreeDBarAttributes>
#include <KChartBackgroundAttributes>
#include <QDebug>
#include <QPainter>
using namespace KChart;
MainWindow::MainWindow( QWidget* parent ) :
QWidget( parent )
{
setupUi( this );
QHBoxLayout* chartLayout = new QHBoxLayout( chartFrame );
m_chart = new Chart();
chartLayout->addWidget( m_chart );
m_model.loadFromCSV( ":/data" );
// Set up the diagram
m_bars = new BarDiagram();
m_bars->setModel( &m_model );
// define custom color for the borders of the bars
QPen pen( m_bars->pen() );
pen.setColor( Qt::black );
pen.setWidth( 0 );
m_bars->setPen( pen );
m_chart->coordinatePlane()->replaceDiagram( m_bars );
// define custom colours for the bars
QList<QColor> bcolor;
bcolor.append(Qt::darkGreen);
bcolor.append(Qt::green);
bcolor.append(Qt::darkRed);
bcolor.append(Qt::red);
for (int row=0; row < m_model.columnCount(); ++row) {
m_bars->setBrush(row, QBrush(bcolor[row]));
}
// Configure the plane's Background
BackgroundAttributes pba;
//pba.setBrush( QBrush(QColor(0x20,0x20,0x60)) );
pba.setVisible( true );
m_chart->coordinatePlane()->setBackgroundAttributes( pba );
m_chart->setGlobalLeadingTop( 20 );
connect(reverse, SIGNAL(toggled(bool)), this, SLOT(setReverseDirection(bool)));
}
void MainWindow::on_barTypeCB_currentIndexChanged( const QString & text )
{
if ( text == "Normal" )
m_bars->setType( BarDiagram::Normal );
else if ( text == "Stacked" )
m_bars->setType( BarDiagram::Stacked );
else if ( text == "Percent" )
m_bars->setType( BarDiagram::Percent );
else
qWarning (" Does not match any type");
m_chart->update();
}
void MainWindow::on_barOrientationCB_currentIndexChanged(const QString & text)
{
if ( text == "Vertical" )
m_bars->setOrientation( Qt::Vertical );
else if ( text == "Horizontal" )
m_bars->setOrientation( Qt::Horizontal );
else
qWarning (" Does not match any orientation");
m_chart->update();
}
void MainWindow::on_paintValuesCB_toggled( bool checked )
{
Q_UNUSED( checked );
// We set the DataValueAttributes on a per-column basis here,
// because we want the texts to be printed in different
// colours - according to their respective dataset's colour.
const QFont font(QFont( "Comic", 10 ));
const int colCount = m_bars->model()->columnCount();
for ( int iColumn = 0; iColumn<colCount; ++iColumn ) {
QBrush brush( m_bars->brush( iColumn ) );
DataValueAttributes a( m_bars->dataValueAttributes( iColumn ) );
TextAttributes ta( a.textAttributes() );
ta.setRotation( 0 );
ta.setFont( font );
ta .setPen( QPen( brush.color() ) );
if ( checked )
ta.setVisible( true );
else
ta.setVisible( false );
a.setTextAttributes( ta );
a.setVisible( true );
m_bars->setDataValueAttributes( iColumn, a);
}
m_chart->update();
}
void MainWindow::on_paintThreeDBarsCB_toggled( bool checked )
{
ThreeDBarAttributes td( m_bars->threeDBarAttributes() );
qreal defaultDepth = td.depth();
if ( checked ) {
td.setEnabled( true );
if ( threeDDepthCB->isChecked() )
td.setDepth( depthSB->value() );
else
td.setDepth( defaultDepth );
} else {
td.setEnabled( false );
}
m_bars->setThreeDBarAttributes( td );
m_chart->update();
}
void MainWindow::on_markColumnCB_toggled( bool checked )
{
const int column = markColumnSB->value();
QPen pen( m_bars->pen( column ) );
if ( checked ) {
pen.setColor( Qt::yellow );
pen.setStyle( Qt::DashLine );
pen.setWidth( 3 );
} else {
pen.setColor( Qt::black );
pen.setStyle( Qt::SolidLine );
pen.setWidth( 1 );
}
m_bars->setPen( column, pen );
m_chart->update();
}
void MainWindow::on_depthSB_valueChanged( int i )
{
Q_UNUSED( i );
if ( threeDDepthCB->isChecked() && paintThreeDBarsCB->isChecked() )
on_paintThreeDBarsCB_toggled( true );
}
void MainWindow::on_threeDDepthCB_toggled( bool checked )
{
Q_UNUSED( checked );
if ( paintThreeDBarsCB->isChecked() )
on_paintThreeDBarsCB_toggled( true );
}
void MainWindow::on_markColumnSB_valueChanged( int i )
{
QPen pen( m_bars->pen( i ) );
markColumnCB->setChecked( pen.color() == Qt::yellow );
}
void MainWindow::on_widthSB_valueChanged( int value )
{
if ( widthCB->isChecked() ) {
BarAttributes ba( m_bars->barAttributes() );
ba.setFixedBarWidth( value );
ba.setUseFixedBarWidth( true );
m_bars->setBarAttributes( ba );
}
m_chart->update();
}
void MainWindow::on_widthCB_toggled( bool checked )
{
if ( checked ) {
on_widthSB_valueChanged( widthSB->value() );
} else {
BarAttributes ba( m_bars->barAttributes() );
ba.setUseFixedBarWidth( false );
m_bars->setBarAttributes( ba );
m_chart->update();
}
}
void MainWindow::on_fixPlaneSizeCB_toggled( bool checked )
{
CartesianCoordinatePlane* plane =
qobject_cast<CartesianCoordinatePlane*>( m_chart->coordinatePlane() );
if ( plane == nullptr )
return;
plane->setFixedDataCoordinateSpaceRelation( checked );
// just a little adjustment:
// Reset the zoom settings to their initial values
// when the releation-adjust checkbox is unchecked:
if ( ! checked ) {
m_chart->coordinatePlane()->setZoomFactorX( 1.0 );
m_chart->coordinatePlane()->setZoomFactorY( 1.0 );
m_chart->coordinatePlane()->setZoomCenter( QPointF(0.5, 0.5) );
}
m_chart->update();
}
void MainWindow::setReverseDirection(bool reverse)
{
CartesianCoordinatePlane* plane =
qobject_cast<CartesianCoordinatePlane*>( m_chart->coordinatePlane() );
if ( plane == nullptr )
return;
if (axes->currentIndex() == 0) {
plane->setHorizontalRangeReversed(reverse);
} else if (axes->currentIndex() == 1) {
plane->setVerticalRangeReversed(reverse);
}
}
|