css - Can I generate Kendo Funnel Chart horizontally? -


i'm trying generate funnel chart horizontally. got demo , running, vertical. there other options available ?

got option other library:http://www.zingchart.com/gallery/chart/#!horizontal-funnel-styled-guides

but client wants use kendo , overkill include other library funnel chart

just taking shot @ anyways, kendo bar graphs can generated both horizontally , vertically. need mess type var in js.

bar-types generated horizontally

 $("#yourchart").kendochart({      seriesdefaults: {      //generate horizontal bar graph          type: "bar"      }  }); 

my guess have set column-type var this:

column-types generated vertically

$("#yourchart").kendochart({      seriesdefaults: {       //generate vertical graph          type: "column"      }   }); 

kendo funnel charts can not configured horizontally.

however can put chart in div , tell div flip sideways. same labels, etc.. , reposition everything. it's bit of hack, kind of way see being possible.

#yourdiv{ -webkit-transform: rotate(270deg);     -moz-transform: rotate(2700deg);     -o-transform: rotate(2700deg);     -ms-transform: rotate(270deg);     transform: rotate(270deg); } 

Comments

Popular posts from this blog

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -