This is a migrated thread and some comments may be shown as answers.

Showing only the markers IE8 problem

2 Answers 35 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Marcel
Top achievements
Rank 1
Marcel asked on 21 Jan 2013, 02:18 PM
Hello,

I have a line graph and I want only the markers to be visible. To make this happen I set the line width of the graph to zero. For an example see http://jsfiddle.net/CjMCZ/2/ .

This is working for Chrome, Firefox and IE9. However in IE8 the line is shown with the minimum width. I believe this is a bug. How can I only show the markers in IE8?

Regards,
Marcel

2 Answers, 1 is accepted

Sort by
0
Marcel
Top achievements
Rank 1
answered on 22 Jan 2013, 01:15 PM
I have updated the fiddle to use the latest kendo release http://jsfiddle.net/CjMCZ/7/ . The problem still exists.
0
Accepted
Iliana Nikolova
Telerik team
answered on 22 Jan 2013, 04:46 PM
Hello Marcel,

In order to achieve the desired outcome I will suggest setting opacity: 0 to the line series (instead of width). Like here: 
$("#chart").kendoChart({
  //....
  series: [{
     type: "line",
     opacity: 0,
   //....
  }]
});

For convenience I updated your jsFiddle example.

Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Charts
Asked by
Marcel
Top achievements
Rank 1
Answers by
Marcel
Top achievements
Rank 1
Iliana Nikolova
Telerik team
Share this question
or