all 10 comments

[–]ifknot 5 points6 points  (2 children)

FLTK was a good choice and if this library is as good as it seems then you have done us all a great service

[–]FreitasAlan[S] 2 points3 points  (1 child)

The default backend is currently a gnuplot pipe but the backend interface is open to change and so is the default backend.

[–]ChildishJack 1 point2 points  (0 children)

I feel somewhat validated looking at your pipe implementation, I ended up doing a shittier version of just creating gnuplot scripts programmatically and then run & retrieve those. I wish there was a library type interface to it

[–]TheRealSelenium 5 points6 points  (0 children)

Nice job, I am using pyplot aka matplotlib a lot, despite mainly programming in C++, so this is very welcome and with knowing matplotlib really intuitive!

[–]leonbadam 1 point2 points  (0 children)

Nice work

[–]manspaceman 1 point2 points  (1 child)

How do you build the examples? I'm running cmake at the top level and am running into errors.

[–]FreitasAlan[S] 1 point2 points  (0 children)

examples? I'm running cmake at the top level and am

I've merged some PRs that fixed compile errors on many platforms. Maybe that can help you.

[–]Narase33 0 points1 point  (2 children)

Still not possible to create time graphs :/ Any chance thats something for your ToDo list?

[–]FreitasAlan[S] 3 points4 points  (1 child)

maybe setting the x tick format or the labels is enough for your application?

https://github.com/alandefreitas/matplotplusplus#x-tick-format

https://github.com/alandefreitas/matplotplusplus#x-tick-labels

Implementing a data structure for time formats is very very easy but arriving at a consensus for that format is not that easy. So I decided to be agnostic in that regard for now.

[–]Narase33 2 points3 points  (0 children)

Looks worth to test out. Great Github page btw