dygraphs icon indicating copy to clipboard operation
dygraphs copied to clipboard

Labels on graph wrongly placed ( dygraphs.css not loaded when using examples )

Open slonyik opened this issue 8 years ago • 0 comments

Filing a bug report? Please include the following:

  1. 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

2018-01-18_150002

  1. 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)

  2. 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

slonyik avatar Jan 18 '18 14:01 slonyik