简体   繁体   English

带系列的自定义 Rally 图表(类似于群集 Excel 图表)

[英]Custom Rally Charts w/ Series (similar to clustered Excel graph)

is it possible to create a custom chart/graph in Rally of a bar chart and then display a series?是否可以在条形图的 Rally 中创建自定义图表/图形,然后显示系列? i want to trend a count of stories over time for each release.我想随着时间的推移为每个版本统计一些故事。

i've tried using regular charts but doesn't seem like that is a capability of rally我尝试过使用常规图表,但似乎这不是反弹的能力

This is a bit late, but in case you're still looking, it is possible to have multiple plots in the same Rally Chart.这有点晚了,但如果您仍在寻找,可以在同一个 Rally 图表中拥有多个图。

In the chartData config, you can pass multiple values to the series property like so:chartData配置中,您可以将多个值传递给series属性,如下所示:

chartData: {
  categories: ['cat 1', 'cat 2', etc...],
  series: [{
    Name: 'Series 1',
    data: yourSeriesData1,
    type: 'column'
  }, {
    Name: 'Series 2',
    data: yourSeriesData2,
    type: 'spline'
  }]
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM