Skip to content

presstab/psscharts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PssCharts

Simple and easy to use charts and tool. Made using Qt Widgets. Released under MIT License, meaning our charts are free to use for both personal and commercial software.

To see a chart in action, try out our example chart tool. The example charts can be built using chart_examples.pro. LineChart

To use our charts in your project, add the files from the src/ directory to your project.

Quick example:

    PssCharts::LineChart* chart = new PssCharts::LineChart();
    chart->resize(400, 400);
    chart->SetTopTitle("Line Chart");
    std::map<uint32_t, double> mapPoints = {
        {1585337651, 3.0928},
        {1585348000, 4.3948},
        {1585368000, 5.09},
        {1585398000, 4.988}
    };
    chart->SetDataPoints(mapPoints);
    chart->show();

About

Lightweight Chart Library for Qt.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published