teleplot
teleplot copied to clipboard
Optional flags
Thanks for this great tool!
On the current main branch https://github.com/nesnes/teleplot/commit/493b8665d081d8c8b62e887468590db4524a95a1
By reading the doc I don't understand what the |g
value corresponds to for the optional E field.
E is containing flags that carry information on how to read and display the data.
Is it still necessary ?
- Also i tried using the no plot option
|np
but when I refresh the page the plots are still automatically added, does it work? - When i plotted some values in c++ using stringstream I had some values that were formatted with scientific unit
3.2323e-8
and it was detected as a text so no chart was availble. Is it mandatory to format with fixed floating point?
It can be solved on the client side with some flags, maybe we can add this to the doc ?
std::stringstream ss;
ss << std::fixed;
ss.precision(4);