Olfa Mbeya
Olfa Mbeya

Reputation: 11

read compressed (zipped) csv with dygraphs

Here is my code:

var d = new Dygraph(
    document.getElementById("graph"),
    data.csv,
    options);

I want to change a simple csv by a csv compressed (zipped) if it's possible!

I wait your answer, thank you !

Upvotes: 1

Views: 44

Answers (1)

Lucidio Vacas
Lucidio Vacas

Reputation: 720

The dygraph library itself doesn´t carry out that task. If you want to do it you have to unzip the file yourself before loading it in the chart

Upvotes: 1

Related Questions