Description Usage Arguments Value Note Examples
Add a data series to a dygraph plot. Note that options will use the default
global setting (as determined by dyOptions
) when not specified
explicitly. When no dySeries
is specified for a plot then all series
within the underlying data are plotted.
1 2 3 4 5 |
dygraph |
Dygraph to add a series definition to |
name |
Name of series within data set. If no name is specified then series are bound to implicitly based on their order within the underlying time series object. This parameter can also be a character vector of length 3 that specifies a set of input column names to use as the lower, value, and upper for a series with a shaded bar drawn around it. |
label |
Label to display for series (uses name if no label defined) |
color |
Color for series. These can be of the form "#AABBCC" or "rgb(255,100,200)" or "yellow", etc. If not specified then the global colors option (typically based on equally-spaced points around a color wheel). |
axis |
Y-axis to associate the series with ("y" or "y2") |
stepPlot |
When set, display the graph as a step plot instead of a line plot. |
stemPlot |
When set, display the graph as a stem plot instead of a line plot. |
fillGraph |
Should the area underneath the graph be filled? This option is not compatible with error bars. |
drawPoints |
Draw a small dot at each point, in addition to a line going through the point. This makes the individual data points easier to see, but can increase visual clutter in the chart. |
pointSize |
The size of the dot to draw on each point in pixels. A dot is always drawn when a point is "isolated", i.e. there is a missing point on either side of it. This also controls the size of those dots. |
pointShape |
The shape of the dot to draw. Can be one of the following: "dot" (default), "triangle", "square", "diamond", "pentagon", "hexagon", "circle", "star", "plus" or "ex". |
strokeWidth |
The width of the lines connecting data points. This can be used to increase the contrast or some graphs. |
strokePattern |
A predefined stroke pattern type ("dotted", "dashed", or
"dotdash") or a custom pattern array where the even index is a draw and odd
is a space in pixels. If |
strokeBorderWidth |
Draw a border around graph lines to make crossing lines more easily distinguishable. Useful for graphs with many lines. |
strokeBorderColor |
Color for the line border used if
|
plotter |
A function which plots the data series. May also be set on on
a global basis using |
Dygraph with additional series
See the online documentation for additional details and examples.
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.