Emprise Javascript 条形图 - 如何在条形图中创建分组条形
我正在尝试创建一个对数据进行分组的条形图。例如。假设前 4 个小节是“深橙色”,接下来的 10 个是“Fire Brick”,接下来的 5 个是“Dark Orchid”和“Fire Brick”。最后一组是黄色。我知道有一个名为 groupdBars 的属性,但我不确定如何使用它:
http://www.ejschart.com/help/index.html?ejsc_barseries_properties_groupedbars.html
有人知道我该怎么做吗?我以为我可以像下面这样做,但它不起作用:
var chart = new EJSC.Chart("myChart", {
show_legend: false
});
chart.addSeries(new EJSC.BarSeries(
new EJSC.ArrayDataHandler([
[[1,1],[2,1],[3,1]],
[[4,1],[5,1],[6,1]],
[[7,1],[8,1],[9,1]],
[[10,1],[11,1],[12,1]]
]),
{
lineWidth: 0,
title: "The Green Series",
groupedBars: true,
useColorArray: true ,
defaultColors: [
'rgb(255,140,0)', //DarkOrange
'rgb(178,34,34)', //FireBrick
'rgb(153,50,204)', //DarkOrchid
'rgb(255,255,0)' //Yellow
]
}
));
当谈到 Emprise 时,我有点新手......:)
I'm trying to create a bar chart where the data is grouped. Eg. let's say the first 4 bars are 'Dark Orange', the next 10 are 'Fire Brick', the next 5 are 'Dark Orchid' & the last group are Yellow. I know there's a property called groupdBars, but I'm unsure of how to utilise this:
http://www.ejschart.com/help/index.html?ejsc_barseries_properties_groupedbars.html
Anyone know how I do this? I thought I could do it like below, but it doesn't work:
var chart = new EJSC.Chart("myChart", {
show_legend: false
});
chart.addSeries(new EJSC.BarSeries(
new EJSC.ArrayDataHandler([
[[1,1],[2,1],[3,1]],
[[4,1],[5,1],[6,1]],
[[7,1],[8,1],[9,1]],
[[10,1],[11,1],[12,1]]
]),
{
lineWidth: 0,
title: "The Green Series",
groupedBars: true,
useColorArray: true ,
defaultColors: [
'rgb(255,140,0)', //DarkOrange
'rgb(178,34,34)', //FireBrick
'rgb(153,50,204)', //DarkOrchid
'rgb(255,255,0)' //Yellow
]
}
));
I'm a bit of a newbie when it comes to Emprise... :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己发现了:)你将它们添加为单独的“系列”:
等等
Found it out myself :) You add them as separate 'series':
etc