Reputation: 2852
By setting the property fillGraph: true
, we can fill the dygraph with its default color. But how to fill it with a custom color?
Upvotes: 2
Views: 2894
Reputation: 16955
The fill color is always the same as the series color (which you can control via the colors
option) but with a lower opacity, controllable by the fillAlpha
option.
If you need more flexibility than this, you have two options:
Upvotes: 1