Questions tagged [kendo-chart]

The Kendo UI Charts use modern browser technologies to render high-quality data visualizations. All graphics are rendered on the client using Scalable Vector Graphics (SVG) with a fallback to Canvas.

Kendo UI Charts support the following series types:

  • Bar and Column
  • Line and Vertical Line
  • Area and Vertical Area
  • Bullet
  • Pie and Donut
  • Scatter
  • Scatter Line
  • Bubble
  • Radar and Polar

Advantages

  • To Generate chart in UI, library is used HTML, JavaScript, Jquery and CSS.
  • Also support older version of IE.
  • Good forum and stackoverflow support.
  • Rich client side API like: Events, Methods and Properties.
  • We can create our custom theme by using this link.

Disadvantages

  • Now this library is paid.

Useful links

Related tags

437 questions
4
votes
0 answers

Kendo chart with date x-axis renders very slowly when baseUnit is "seconds"

My chart has X-axis as dates, and I have some data points that are pretty close (seconds away), so I need to set baseUnits down to "seconds". But the chart renders extremely slow in this case. I set up a sample here: right now date range is…
4
votes
3 answers

In kendo UI how to draw vertical line in a line chart

How to draw a vertical line in a line chart using Html5 and kendo UI ? can anyone help me out to solve this problem ?
arun
  • 227
  • 1
  • 5
  • 16
4
votes
2 answers

Kendo chart export to pdf or png

I have a kendo chart with the remote data. Is it possible to export the chart to png or pdf format
user1877936
  • 351
  • 3
  • 7
  • 22
3
votes
0 answers

kendo chart dynamic series from category, value, seriesName

I am using asp.net mvc 5 and KendoUi charts. I want to create line chart that vertical axis is Poulation, horizantal axis is Year and for each country add series. Country List is not fixed. how can i do it? My model is: public class…
3
votes
1 answer

How can I wrap the categoryAxis text on Kendo UI charts

I realize that using long text names for the categoryAxisValues on kendo ui charts the text will overlap and display on top of each other. I try to check the documentation looking for a property that could fix it but apparently does not exist or I…
CMartins
  • 3,247
  • 5
  • 38
  • 53
3
votes
0 answers

How to properly render the kendo chart custom labels

I neede to customize labels (like a bubbletalk) of a kendo line chart. I build a template (like in this kendo test: http://dojo.telerik.com/@PMcDonou/URiZA. I took this demo from an admin solution in a kendo forum thread) and it work when load…
Alberto Favaro
  • 1,824
  • 3
  • 21
  • 46
3
votes
1 answer

Kendo UI pie chart label overlap

I'm having issues with getting a kendo UI pie chart to display segment labels in a readable fashion. From reading through various forums etc there doesn't seem to be a known approach to solving this issue? Please see the screenshot and dojo link…
Jack Mills
  • 6,022
  • 5
  • 34
  • 38
3
votes
0 answers

Kendo Chart category axis fix number of labels

I have a kendo chart with date time series on x-axis as below but i wanted to fix the number of labels on the axis. Could you please help me on this how to acheive. @(Html.Kendo().Chart(Model.ParameterValueList) .Name("chart") …
3
votes
2 answers

Kendoui bar chart set series on click of a button

I am working with KendoUI bar chart. Please check this fiddle. In this fiddle I am setting series config at the design time. I want to add series to the chart at run time on click of a button. How can I add series to kendo chart on click of a…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
3
votes
0 answers

Kendo UI Chart - Handling Daylight savings

I have a chart that is displaying half hour data which breaks when the day in question contains daylight savings. I am parsing the date as a javascript date and the chart breaks when you have two different time zones in the category field. I have…
Jason
  • 31
  • 3
3
votes
1 answer

How to provide X axis and Y Axis value in kendo chart crosshair tooltip?

I am trying to get the X axis and Y axis value in crosshair tooltip of kendo chart. Please see: http://dojo.telerik.com/iDanE How can this be done? How to specify the template for tooltip to contain both X axis and Y axis value? Want to have both…
user2439903
  • 1,277
  • 2
  • 34
  • 68
3
votes
1 answer

Transforming a JavaScript array of objects

I have the following two JavaScript arrays: var grades = [ { name: "A", color: "#00FF00" }, { name: "B", color: "#88CC00" }, { name: "C", color: "#AAAA00" }, { name: "D", color: "#CC8800" }, …
Carl
  • 324
  • 1
  • 15
3
votes
1 answer

kendo showing "," and "%" in labels

I am using Kendo and am displaying labels on a bar chart. Right now with the following code the labels display numbers as "25.4". I need the labels to show the percentage sign after the number and thought I can do this in the label template part…
Spencer Smith
  • 33
  • 1
  • 3
3
votes
1 answer

Kendo Chart - no data message

I'm using a Kendo Pie Chart and I want to configure this to display a message if there is no data to display. I am configuring the pie chart with the following js function - with the variable "JsPieChartDataSet" being a set of JSON formatted data.…
Andy E
  • 137
  • 1
  • 6
3
votes
1 answer

How to display correct dates on the X-Axis

tl;dr: when I set the xAxis min and max to, say, 2013-01-01 14:30:00 and 2013-01-01 15:45, I need to see these times on the xAxis and not 14:00 and 15:00, or 01. 01. 2013 and 01. 01. 2013, or whatever automatically generated timestamps that are…
Pavel
  • 698
  • 1
  • 11
  • 20
1
2
3
29 30