I have installed my jqChart in an Angular Component. The chart basically works fine, but little or none of the CSS is having any effect. This means that I have no range sliders and no toolbar!!!
I am importing the css files this way in my component:
Code: styleUrls: ['./new-graph.component.css',
'./vendor/jqchart/css/jquery.jqChart.css',
'./vendor/jqchart/css/jquery.jqGauges.css',
'./vendor/jqchart/css/jquery.jqRangeSlider.css',
]
The first problem I run into is that it can't find files such as
Code:background-image:url('icons-classic/label.png');
Indeed those files are not in the package. So I tried commenting out all those lines, and also giving those selectors a background color (to stand in for the background image).
Still nothing appears where the range sliders or toolbars should be.
Whatever I do, my chart just has a white background, and space for the range sliders, and weird dots that appear when the toolbar should appear, but no range sliders or toolbars or possibly any CSS at all.
I'm happy to post a screenshot but i don't see a way to attach an image on this forum.