ResInsight/ThirdParty/nightcharts
Magne Sjaastad c759a11888
Cmake cleanup and selected Qt6 adjustments
- Avoid warning using newer CMake by removing obsolete cmake requirements in sub projects
- Several adjustments preparing for Qt6
2024-04-17 15:06:51 +02:00
..
CMakeLists.txt Cmake cleanup and selected Qt6 adjustments 2024-04-17 15:06:51 +02:00
nightcharts.cpp Several adjustments related to Qt6 2024-04-16 14:22:15 +02:00
nightcharts.h #6514 Dark Theme : Fix text color in nightcharts 2020-09-25 14:32:06 +02:00
nightcharts.pri #1116 Added nightcharts pie plotting library 2017-01-23 12:59:24 +01:00
nightchartswidget.cpp #1116 Added nightcharts pie plotting library 2017-01-23 12:59:24 +01:00
nightchartswidget.h #1116 Added nightcharts pie plotting library 2017-01-23 12:59:24 +01:00
README.md #1116 Added nightcharts pie plotting library 2017-01-23 12:59:24 +01:00

Nightcharts

This class includes a drawing histogram, pies and pseudo 3D pies.
It has very simple API and high level usability.
http://qt-apps.org/content/show.php?action=content&content=132560

Licensed under LGPL 2.1

Example :

void MainWindow::paintEvent(QPaintEvent e*)
{
    QWidget::paintEvent(e);
    QPainter painter;
    QFont font;
    painter.begin(this);
    Nightcharts PieChart;
    PieChart.setType(Nightcharts::DPie);//{Histogramm,Pie,DPie};
    PieChart.setLegendType(Nightcharts::Round);//{Round,Vertical}
    PieChart.setCords(100,100,this->width()/1.5,this->height()/1.5);
    PieChart.addPiece("Item1",QColor(200,10,50),34);
    PieChart.addPiece("Item2",Qt::green,27);
    PieChart.addPiece("Item3",Qt::cyan,14);
    PieChart.addPiece("Item4",Qt::yellow,7);
    PieChart.addPiece("Item5",Qt::blue,4);
    PieChart.draw(&painter);
    PieChart.drawLegend(&painter);
}

3DPie example

How to use

  • Check out in any location (or add as a submodule)
  • Write into Your main .pro file:
include("path/to/nightcharts/nightcharts.pri")