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
0
votes
1 answer

Kendo Bar chart with grouped data with one list and line based on different list

I have a kendo chart where in i have data from jan to jun in which it has multiple locations. For example Jan with A,B,Total as location and Feb with A,B,Total. Now i have to show the chart with bar with location and Line chart for Total. For…
0
votes
1 answer

kendo bar chart ordering issue

I have a kendo barchart and I get the data from the model and bind to the char. But the problem here is i am unable to sort the order. I am pasting the code below. Todat certification time is coming in between.Any help on this is highly…
0
votes
0 answers

How to add data to Kendo Chart without refreshing the entire chart?

We have dynamic data coming in at about 1 request per second. We would like our Kendo UI Line Chart to update with the additional data. However, every time a new piece of data is inserted, the entire chart gets re-drawn. Is there a way to add data…
wayofthefuture
  • 8,339
  • 7
  • 36
  • 53
0
votes
0 answers

Uncaught TypeError: l.renderElement is not a function

I have a shared tooltip for my graph: $scope.kissaChart.setOptions({ renderAs: 'canvas', drag: onDrag, dragEnd: onDragEnd, zoom: onZoom, tooltip: { …
Kim Honoridez
  • 917
  • 2
  • 15
  • 28
0
votes
1 answer

Pan and zoom in kendo boxplot chart

I am trying to use the pan and zoom functionality in kendo box plot chart, can this be achieved for box plot chart. http://demos.telerik.com/kendo-ui/bar-charts/pan-and-zoom
user1076698
  • 691
  • 3
  • 10
  • 21
0
votes
1 answer

Kendo UI Chart DataBinding not firing

I'm looking into checking the data source after it is bound to see how many items there are. For some reason I can't get the dataBound or dataBinding events to even fire. The data is actually being passed into a function so when the grid is…
lucuma
  • 18,247
  • 4
  • 66
  • 91
0
votes
1 answer

kendo bar chart read never contatct server (cache disabled)

When some external event is triggered I need to refresh chart datasource manually calling: $(".k-chart").data("kendoChart").dataSource.read(); Everytime I call read, datasource requestEnd is called, but, obiviously no response is available on event…
assistbss
  • 527
  • 7
  • 25
0
votes
1 answer

Color Assign kendo chart

I have two dataseries and want to give different colors as follows. However no matter I assign different color, I am ending up with same color which is color of the last series (#006666). self.dataSeries[0].color = "#66FF66"; …
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
0 answers

Cannot create Kendo pie chart for ASP.NET mvc

This is the first time I am using Kendo pie chart.... Dont know whats wrong. View Code: @(Html.Kendo().Chart() .Name("PipeLinePipeChart") .Legend(legend => legend .Visible(false)) .DataSource(ds => …
Suk
  • 53
  • 9
0
votes
1 answer

Kendo Chart's ajax request not reaching the action method

Can please anyone help me to resolve my problem about an example from Telerik where I am trying to display a chart with an ajax call. The code runs fine without any exceptions, but it's not firing the action method in my controller. I have looked…
Learning Curve
  • 1,449
  • 7
  • 30
  • 60
0
votes
1 answer

Kendo Line chart - baseUnit fit - tooltip displaying the wrong value

I have the following issue using the kendo line chart when the baseUnit is set to "fit". The problem here is a mismatch between the chart render and the data. Please open this example: http://jsbin.com/geyeqi/edit?output Selecting the second point…
Stefano Magistri
  • 1,130
  • 1
  • 11
  • 18
0
votes
1 answer

Legend Duplication

I have the following implementation and it is functional. I wonder how I could able to fix duplicate of legend in my current implementation. Please watch fname="NY" for (var i=0;i
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

Loading Image Animation only once

I have the following implementation and it is fully functional. I need to show loading animation image first time only, my current implementation it shows loading animation all the time. var theDataSource = new kendo.data.DataSource({ …
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

Loading Animation Image Implementation

I have the following implementation, it works and functional. However I would like to add a loading animation with setup a 4 seconds. requestStart: function () { kendo.ui.progress($("#loading"), true); }, requestEnd: function () { …
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
3 answers

MouseOver with Cursor Pointer on Y Axis

The following implementation shows mouseover event with cursor pointer on y axis title label. It works and functional. However, I want to implement mouseover event with cursor pointer on y axis (numeric axis) as well. CURRENT IMPLEMENTATION
casillas
  • 16,351
  • 19
  • 115
  • 215