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

Data Event Binding on Chart

As a default, chart shows data for 2001-2002 ; I would like to know when user hover the mouse on the chart it will show data for 2002-2003. Once mouser is out of the chart then it should go back to default stage. //The first data comes from…
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

Legend Customization

I would like to know how to remove padding between Path2 and Path3 since legend.label.padding is applied to all of them. legend: { visible: true, labels: { padding: 10} }, series: [{ name: "Path1", data: stats, …
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

Custom Method Call in Kendo

I am trying to customize the tooltip as follows, self.updateChart = function () { if ($("#chart").data("kendoChart") != undefined) { var chart = $("#chart").data("kendoChart"); // the following line throws an error …
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

Kendo Bar Chart With Multiple Vertical Axis

I have a chart where I would like to display two vertical axis: value and percentages for alcohol & drugs in a given month. Graph is showing columns for drug and alcohol by linking them to value field but it is not displaying percentages. I want the…
learner
  • 581
  • 7
  • 27
0
votes
1 answer

Kendo UI chart categoryaxis date group by day

my json : var stats = [ { value: 30, date: new Date("2015/04/12"), No: 1 }, { value: 50, date: new Date("2015/04/12"), No: 2 }, { value: 45, date: new Date("2015/04/12"), No: 3 }, { value: 30, date: new Date("2015/04/13"), No: 1…
yinjiale
  • 1
  • 3
0
votes
1 answer

Kendo line chart X-axis displaying wrong date format

My line chart shows wrong date format for the X-axis label. It is showing /Date(1425148200000)/, but I want it to show as dd/MM/yyyy. This is my code: .CategoryAxis(axis => axis.Categories(model => model.Price.EffectiveDate))
Suk
  • 53
  • 9
0
votes
1 answer

Kendo UI Chart Category Axis Labels

Is there a way to add the line break in the client side ? For example, I want the category axis label to be displayed as: JUN 2012 But my database (server) returns it as "JUN 2012" and I don't want to add \n there, but want to achieve it from…
0
votes
2 answers

AngularJS Kendo chart not using complete space of screen

I have used AngularJS,KendoCharts and Bootstrap in my project. I have used nav-tabs and have added three tabs on my screen which display three different Kendo charts. All is working well but I am facing one issue. When I click on second tab, the…
pogo22
  • 137
  • 1
  • 5
  • 17
0
votes
1 answer

Hover event on kendo chart

I am using kenod box plot in my project. Is there any way i can get a hover event when the user hovers over the box plot chart? Not the(onserieshover)event ,but on simply hover on chart area? Help needed
user1076698
  • 691
  • 3
  • 10
  • 21
0
votes
0 answers

Uncaught ReferenceError: jQuery is not defined in kendo mvc4

My layout page code is below-
banny
  • 859
  • 7
  • 12
0
votes
1 answer

OnsenUI and Kendo pie chart issue

I am using Kendo pie chart in onsenui framework and it works great if i use function createChart() { $("#chart").kendoChart({ title: { position: "bottom", text: "Share of Internet…
Ranjith Varatharajan
  • 1,596
  • 1
  • 33
  • 76
0
votes
1 answer

Changing kendo chart type fades color when Area chart type is also included

I want to change the kendo chart type dynamically. I am referring to http://demos.telerik.com/kendo-ui/chart-api/index link. I made a change in this code and added one more chart type "area" along with other three chart types. But I see a weird…
pogo22
  • 137
  • 1
  • 5
  • 17
0
votes
1 answer

Html Kendo line chart x- axis labels overlaping

I am using kendo line chart in my application, the x axis values/labels are overlapping. The xAxis.labels.step property doesn't work in my case as the categoryaxis is bind to an datasource that can contain a date difference in days/moths/years. How…
Ronak Patil
  • 1
  • 1
  • 1
0
votes
1 answer

Kendo chart not displaying data as expected

I have been having an issue with the kendo chart. From the snippet below, if you open Kendo Dojo and paste it you will notice that the category axis only shows one month "Nov" when it contains data that spans 4 months. This data is grouped by…
PeterU
  • 11
  • 3
0
votes
1 answer

CS1593: Delegate Action does not take 0 arguments kendo

I have the folling code: @(Html.Kendo().Chart(Model.ListCa).Name("chart1") .Title("Chiffre d'affaire par Service et par mois durant l'année " + Model.Year + "") .SeriesDefaults(seriesDefaults =>…