Skip to content

magnunleno/C-CairoPlot

Repository files navigation

C-CairoPlot

A reimplementation of CairoPlot in C.

Attention: This project is in very early development stage

Examples

Currently C-CairoPlot is short featured and is only capable to plot Horizontal Bar Plots.

Default Horizontal Bar Plot

CP_Series *series = cp_newDataSeries("Basic Bar Plot");
cp_appendData(series, NULL, 4);
cp_appendData(series, NULL, 10);
cp_appendData(series, NULL, 6);

cp_barPlot(NULL, NULL, series, CP_PNG);

cp_destroySeries(series);

Default Horizontal Bar Plot

Contributting

If you want to contribute just fork the repository, make your changes and send me a fork request.

Needed libraries/dependencies:

  • libcairo2-dev
  • libglib2.0-dev
  • check

What is/was CairoPlot

CairoPlot is/was a pure Python plotting library which used Cairo C/Python API to create astonishing charts.

It was recognized by it's great aesthetics, originally conceived by Rodrigo Araujo.

About

A reimplementation of CairoPlot using C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published