Yue Lu
Yue Lu

Reputation: 85

Can dygraphs plot chart base on a subset of fields from a csv file?

I would like to plot a chart base only on a subset of the fields from a csv file. Can dygraphs do that?

Upvotes: 0

Views: 217

Answers (1)

danvk
danvk

Reputation: 16955

You can use the visibility option to suppress display of particular columns in your data. That requires these columns to still be numeric & parse, of course. If you can't guarantee that, you'll need to preprocess your data.

Upvotes: 2

Related Questions