python-flot-utils icon indicating copy to clipboard operation
python-flot-utils copied to clipboard

Makes it easy to convert Python data structures to JSON strings suitable for flot series and options

Results 3 python-flot-utils issues
Sort by recently updated
recently updated
newest added

The sample code says graph.series_json returns "[{"data": [[1, 1], [2, 2], [3, 3]]}]" ...whereas in reality my sample code returns "[{"line": {"show": true}, {"data": [[1, 1], [2, 2], [3, 3]]}]"...

Hi, Same issue with pie chart : print series_json = [{"data": [{"data": 2, "label": "Bureau"}, {"data": 1, "label": "Atelier"}, {"data": 1, "label": "Commerce"}, {"data": 1, "label": "Stockage"}]}] but should be...