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 Pie Chart MVC Data Binding

I'm having an issue with Telerik's Kendo UI Pie Chart in MVC. I can't find any decent code examples on their site. The one demo I've found only shows half of the code, so I tried guessing at how to get it working. I'm getting an error, and no…
0
votes
1 answer

Add aggregate function on tooltip in kendo chart

I am working with a kendo chart which has a date x-axis. I have several points for different dates, but the x-axis shows only the per month view. I have set a custom aggregate function to display the LAST data point that corresponds to each month,…
luisgepeto
  • 763
  • 1
  • 11
  • 36
0
votes
1 answer

Kendo UI Bullet chart multiple targets and Labels

I want to create a bullet chart with multiple targets having different color and labels. Also scale interval should be 50. I tried this http://dojo.telerik.com/iXaSa/2 but step label is not working and not sure how to change color of targets and put…
Rakesh Goyal
  • 3,117
  • 8
  • 39
  • 69
0
votes
1 answer

category axis and Value axis title in kendo bar chart

I am working with kendo bar chart/ column chart, I am displaying the category axis and value axis title in x and Y axis, i am able to see the title being set. The issue is the title is very close to the lines of x and y axis, Is there any way i can…
user1076698
  • 691
  • 3
  • 10
  • 21
0
votes
1 answer

kendo chart. onReady Event

I'm trying to find a way to execute some javascript after the kendo chart has been drawn. example here I can't seem to find anything in the documentation. Thanks
RayLoveless
  • 19,880
  • 21
  • 76
  • 94
0
votes
1 answer

KendoUI multiple axis Chart (mixed chart with Bubble and Column chart types)

I am using Telerik for Silverlight (for desktop browsers) and Kendo UI (for mobile browsers) in my data visualisation project. Multi axis chart of types Bubble and Column works fine in Silverlight. But the same does not work in Kendo UI. Kendo just…
Vinnie
  • 1,053
  • 11
  • 31
0
votes
1 answer

multiple data on a "single bar" in a bar chart in Kendo

I have the following codes below: $("#scaledScore").kendoChart({ dataSource: chartData(), // return array list. series: [ { type: "bar", field: "StudentScore", name:…
user3988645
  • 135
  • 2
  • 4
  • 14
0
votes
1 answer

Kendo UI pie/donut chart label format

I'm trying to format the label on a pie/donut chart but I keep getting a Syntax Error. This works but isn't formated:
jweaver
  • 661
  • 5
  • 15
0
votes
1 answer

category axis on kendo chart not rendering correctly

I have a Kendo Chart bound to a data model which is receiving a list of different points. The category axis is a date axis in which the maximum and minimum value are bound to the model. Always the span for the category axis is one whole year (12…
luisgepeto
  • 763
  • 1
  • 11
  • 36
0
votes
2 answers

How can i show labels top of the columns kendo bar chart?

i'm trying to show value labels at top of the my chart's columns. I use Kendo UI. I find this example but i havent done it. It's example: Label Example How can i show 100 and 20 values like in the example chart? I have tried this code but i…
0
votes
3 answers

Kendo chart in kendo grid

I have a problem, I need to set kendo pie chart in Kendo grid with Asp.net mvc. I have a grid that i want to set a pie chart in one of columns in client template. Can i do it?If Yes How? Tnx
user2830448
  • 427
  • 1
  • 8
  • 20
0
votes
1 answer

Kendo line-chart does not show data

I have a Kendo chart looking like: @(Html.Kendo().Chart() .Name("chart") .Title("Beskæftigelses Graf") .Legend(legend => legend .Position(ChartLegendPosition.Left) ) .DataSource(ds => ds.Read(read =>…
Moelbeck
  • 591
  • 2
  • 7
  • 29
0
votes
1 answer

Is there any way to Add multiple vertical axis dynamically to Line chart in Kendo ui?

Is there any way to Add multiple vertical axis dynamically to Line chart in Kendo ui? right now am using the following snippet for 2 vertical axis in kendo ui Line chart valueAxes: [{ name: "test", color:"#07eeff", …
0
votes
3 answers

Kendo UI Data Vis - Bar Chart - Min/Max Y-Axis Value

I'm using Kendo UI's bar chart for some data-visualizations. I'm trying to set a max value for the y axis, does anyone know how I could implement this? Currently, the values appear to be generated based on the value in my graph, but my data needs to…
Mark
  • 4,773
  • 8
  • 53
  • 91
0
votes
1 answer

How to fixed overlapping notes in a kendo chart?

I have several series with notes overlapping like this: http://trykendoui.telerik.com/oVen I tried to change the position of the notes but It doesn't always work If there any way to separate them automatically or manually? Please help