Kendo UI Angular Chart multi axis support - kendo-ui

Does Kendo UI Angular Chart component support multi-axis?
Kendo UI https://demos.telerik.com/kendo-ui/bar-charts/multiple-axes supports them but I can't find any example of documentation on how to do the same with the Angular components.

Angular Kendo UI does support multi-axis, but out of the box they are only used by specific chart types. You will have to do custom JS work to modify which charts can use multi-axis.
This is the documentation for Axes included in Kendo UI for Angular: https://www.telerik.com/kendo-angular-ui/components/charts/chart/elements/axes/#toc-multiple-scatter-chart-axes
Live Code Examples
Multiple Categorical Axes
https://mqkzpi.run.stackblitz.io/
Multiple Scatter Chart Axes
https://4hgbdr.run.stackblitz.io/

Related

Telerik RadChart Not showing when there is 2 charts

Is it possible to have multiple charts on one page? When I try both charts don't want to display. There maybe something I am missing on the layout? The charts work find individually if they are the only chart on the page.

Can I use Kendo UI and Webix on same project?

I need to migrate an app to HTML 5 and I'm researching HTML 5 frameworks. So far I have Webix and Kendo ui as the 2 finalists.
Now, each one has something that I need to use and that is better than on the other, so, I was thinking about using both of them if possible.
So far the only related comment I have found is this Webix and KendoUI
There is one thing to consider with regard to styling - Kendo UI uses the content box model, while Webix uses the border box model.
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model
This can cause problems when nesting components from the two libraries - the ones inside may end up with broken layout due to inherited opposite box model styles.

Multi level pie/donut chart in kendo

I am looking for kendo pie chart multi level.
I already implemented for the bar char for n level series... Similar like that i need to implement for pie char
Here is the example for multi level bar char example
http://jsbin.com/dovefikohu/
Looking for pie/donut chart multi level series using kendo asp.net mvc
smiliar like this
already implement in fusion chart.
http://www.fusioncharts.com/charts/mlpie_4/

kendo ui grid with two tables - header and data

I was trying to use the Kendo Grid UI control.
I am using the binding from Javascript with few template columns.
When the HTML is generated it gets two tables, one for header and one for body. This becomes hard for accessibility, can someone please guide me how do I set to generate only one table with header and data in it.
This issue is caused by setting grid to be scrollable. Scrollable property in Kendo UI for jQuery is true by default so you need to explicitly set it false.
If you are using Kendo UI for ASP.NET MVC then you have to remove GridBuilder's .Scrollable() method call.

In Kendo Ui how to reflect the changes occurred in grid view on to the chart ?

I have a grid view, when i change some nodes or label or parameter it should be reflected in chart. How to make this possible in Kendo UI using mvvm ?
This should be done automatically if you are using a Shared dataSource like shown here.

Resources