We are using jquery sparkline to display the line chart it is working fine in in all version of IE except IE 9
The issue is the graph will be drawn on top of all the other components in UI
the below is the sample code
loading...
var $jx=jQuery.noConflict();
$jx(function() {
/* This code runs when everything has been loaded on the page /
/ Inline sparklines take their values from the contents of the tag /
/ $jx('.linechart').sparkline('html', {normalRangeMax:'80',lineWidth:'1',spotColor:'false'}); /
$jx(function() {
/* This code runs when everything has been loaded on the page /
/ Inline sparklines take their values from the contents of the tag /
var myvalues =//so values;
$jx('.dynamicsparkline').sparkline(myvalues,{normalRangeMax:'80',lineWidth:'1',spotColor:'false'});
});
});
Hi
We are using jquery sparkline to display the line chart it is working fine in in all version of IE except IE 9 The issue is the graph will be drawn on top of all the other components in UI
the below is the sample code
loading... var $jx=jQuery.noConflict();
$jx(function() { /* This code runs when everything has been loaded on the page / / Inline sparklines take their values from the contents of the tag / / $jx('.linechart').sparkline('html', {normalRangeMax:'80',lineWidth:'1',spotColor:'false'}); / $jx(function() { /* This code runs when everything has been loaded on the page / / Inline sparklines take their values from the contents of the tag / var myvalues =//so values; $jx('.dynamicsparkline').sparkline(myvalues,{normalRangeMax:'80',lineWidth:'1',spotColor:'false'}); }); });
please help me to solve this issue
This issue occurs only in IE 9
Thanks in advance