How can I make a stepline or stepped chart in chart.js or D3?(如何在 chart.js 或 D3 中制作阶梯线或阶梯图?)
问题描述
我可以在 Google 电子表格中完成此操作,以下是屏幕截图:
I'm able to accomplish this in Google Spreadsheets, below is a screenshot:
这是 CSV 中的小数据集
Here's the small dataset in CSV
Buy PPU,Sell PPU,Net PPU
0.023,0.019,-0.000725
0.026,0.0165,-0.003725
0.021,0.021,0.00735
0.015,0.0165,0.0147
0.021,0.028,0.0168
0.018,0.028,0.0198
- jsFiddle 基本配置:http://jsfiddle.net/kaatula/j3FJf/1/一个>
- Chart.js 文档:http://www.chartjs.org/docs/李>
- D3 文档:http://strongriley.github.io/d3/api/
感谢任何帮助.我在任何一个库中都没有看到这种特定类型图表的示例(称为我相信步进"或步进线"),但我相信它们足够灵活来完成这个?
Any help is appreciated. I'm not seeing an example in either library of this specific kind of chart (called I believe "Stepped" or "Step line"), but I believe they are flexible enough to accomplish this?
谢谢
推荐答案
似乎没有人回答这个问题,但是您可以通过在数据集配置中设置 steppedLine: true 来使用 chart.js 做到这一点.
Nobody seem to have answered this, but you can do that with chart.js by setting steppedLine: true in the dataset configuration.
var config = {
type: 'line',
data: {
datasets: [{
label: "My dataset",
data: [randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor(), randomScalingFactor()],
steppedLine: true,
}
}
这篇关于如何在 chart.js 或 D3 中制作阶梯线或阶梯图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 chart.js 或 D3 中制作阶梯线或阶梯图?
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01