Just taking a shot at this anyways, Kendo bar graphs can be generated both horizontally and vertically. You just need to mess with the type
var in your JS.
Bar-types are generated horizontally
$("#yourChart").kendoChart({
seriesDefaults: {
//generate as horizontal bar graph
type: "bar"
}
});
My guess is you have it set with the column-type var like this:
Column-types are generated vertically
$("#yourChart").kendoChart({
seriesDefaults: {
//generate as vertical graph
type: "column"
}
});
Kendo funnel charts can not be configured horizontally.
However what you can do is put the chart in a div
and tell the div
to flip sideways. Then do the same with the labels, etc.. and reposition everything. It's a bit of a hack, but kind of the only way I see this being possible.
#yourDiv{
-webkit-transform: rotate(270deg);
-moz-transform: rotate(2700deg);
-o-transform: rotate(2700deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}