dygraphs
dygraphs copied to clipboard
Labels on graph wrongly placed ( dygraphs.css not loaded when using examples )
Filing a bug report? Please include the following:
- Link to a page which demonstrates the problem, preferably a jsfiddle (use http://dygraphs.com/fiddle as a template)
Sample graph: http://dygraphs.com/tests/label_v.html or examples from http://dygraphs.com/tutorial.html

-
Browser and Operating System that exhibit the problem checked on OS: Windows 10 Browser: Chrome 63.0.3239.132 64bit, Firefox Developer 58.0b16 (64-bit), Vivaldi 1.13.1008.40 (Stable channel) (32-bit)
-
Version of dygraphs that you're using 2.0
FIX : change the css inlude line from :
<link rel="stylesheet" src="dygraph.css" />
to
do this:
<link rel="stylesheet" type="text/css" href="dygraph.css"/>
This fixes the issues with displaying the labels.
KR