This is a migrated thread and some comments may be shown as answers.

Floating Stacked Bar

1 Answer 62 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Anas
Top achievements
Rank 1
Anas asked on 16 Jan 2014, 07:22 AM
Hi Team,

I have a requirement on the floating stacked bar chart can this be done in Kendo? Please see the attached PNG file. I need to create a chart similar to the attached. It would be great helpful if you could provide with an example.

This has to be done through MVC4 application.

Regards,
Anas

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 17 Jan 2014, 01:25 PM
Hi Anas,

I have already replied to the same question in your support ticket, however I am pasting my answer here too:

This scenario is not supported by Kendo UI Chart. As a possible workaround I can suggest adding an additional series with a transparent color and without border:
@(Html.Kendo().Chart()
  //....
  .Series(series => {
     series.Column(new double[] { 40, 32, 34, 36, 45, 33, 34, 83, 36, 37, 44, 37, 35, 36, 46 }).Name("Additioanl Series").Color("transparent").Border(b=>b.Width(0));
     series.Column(new double[] { 40, 32, 34, 36, 45, 33, 34, 83, 36, 37, 44, 37, 35, 36, 46 }).Name("First Series");
  })
)

Regards,
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Charts
Asked by
Anas
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or