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

Bug when using Kendo UI chart on Firefox 8.0.1

1 Answer 72 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Weiwang
Top achievements
Rank 1
Weiwang asked on 24 Nov 2011, 03:38 AM
I want to use kendo ui to crate multiple  bar charts in a page.  I am using the theme: "BlueOpal", however ,only the first chart has blue color, all the others are just black. I tested this page on IE, safari, opera, all work.
Is there anyone can give me a fix,thanks.

The code is blow:

function createChart()
  {                    
      $("#tabstrip-1").kendoChart({theme: "BlueOpal",
                              legend: { position: "bottom"},
                              seriesDefaults: { type: "column"},
                               series: [{ name:"samples", data: [58276, 57987, 96199, 59018, 54371, 73841, 71390], color:"red"}],
                              valueAxis: { labels: {format: "{0}"  }},
                              categoryAxis: { categories: ['2011/11/17', '2011/11/18', '2011/11/19', '2011/11/20', '2011/11/21', '2011/11/22', '2011/11/23'], labels:{rotation:3, format: "{0:C}"}},
                              tooltip: { visible: true, format: "{0}"}
                              });
                              
$("#tabstrip-2").kendoChart({theme: "BlueOpal",
                              legend: { position: "bottom"},
                              seriesDefaults: { type: "column"},
                               series: [{ name:"samples", data: [58276, 57987, 96199, 59018, 54371, 73841, 71390]}],
                              valueAxis: { labels: {format: "{0}"  }},
                              categoryAxis: { categories: ['2011/11/17', '2011/11/18', '2011/11/19', '2011/11/20', '2011/11/21', '2011/11/22', '2011/11/23'], labels:{rotation:2, format: "{0:C}"}},
                              tooltip: { visible: true, format: "{0}"}
                              });
}

1 Answer, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 24 Nov 2011, 12:17 PM
Hello,

This is a known issue that we've fixed in the current builds. The official release is due next week and is free of this defect.

Thank you for your patience.

Kind regards,
Tsvetomir Tsonev
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
Weiwang
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or