gpt4 book ai didi

javascript - 使用 Plotly.js 自定义垂直线

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:31:09 24 4
gpt4 key购买 nike

我的要求是使用 Plotly.js 在 X 轴的某些日期绘制垂直线。我是 plotly 的新手,我设法找到了使用“Shapes”选项绘制垂直线的选项。

shapes: [{
type: 'line',
x0: '2000-01-11',
y0: 0,
x1: '2000-01-11',
y1: 7,
line: {
color: 'grey',
width: 1.5,
dash: 'dot'
}
}]

但我面临的主要困难是在绘制垂直线时如何定义 Y 轴值,因为 Y 轴比例会根据数据而有所不同。我希望它是动态的 像 y0: 0 ; y1: (height-margin.top-margin.bottom) 在d3中我们用来画一条垂直线。

请帮助,代码在这里 http://codepen.io/anon/pen/VpwWmV?editors=0010#0

最佳答案

有几种可能对您有用:

  • 使用 yref: paper 独立于 y 轴刻度(所有值都归一化为介于 0 和 1 之间)
  • 始终绘制到 maximum resp。 min最小 y 值

    y1: Math.min(...trace1.y),
  • 取对应x值的y值

    y1: trace1.y[trace1.x.indexOf('2000-01-02')],

所有 3 种方式都在下面实现。

var trace1 = {
x: ['2000-01-01', '2000-01-02', '2000-01-03', '2000-01-04', '2000-01-05', '2000-01-06', '2000-01-07', '2000-01-08', '2000-01-09', '2000-01-10', '2000-01-11', '2000-01-12', '2000-01-13', '2000-01-14', '2000-01-15', '2000-01-16', '2000-01-17', '2000-01-18', '2000-01-19', '2000-01-20', '2000-01-21', '2000-01-22', '2000-01-23', '2000-01-24', '2000-01-25', '2000-01-26', '2000-01-27', '2000-01-28', '2000-01-29', '2000-01-30', '2000-01-31'],
y: [4.3, 8.2, 4.1, 5.6, -3, -0.2, 0.3, 0.4, 4.1, 5, 4.6, -0.2, -8.5, -9.1, -2.7, -2.7, -17, -11.3, -5.5, -6.5, -16.9, -12, -6.1, -6.6, -7.9, -10.8, -14.8, -11, -4.4, -1.3, -1.1],
mode: 'lines',
type: 'scatter',
name: '2000'
};

var data = [trace1];

var layout = {
xaxis: {
type: 'date',
title: 'January Weather'
},
yaxis: {
title: 'Daily Mean Temperature'
},
shapes: [{
type: 'line',
x0: '2000-01-11',
y0: 0,
x1: '2000-01-11',
yref: 'paper',
y1: 1,
line: {
color: 'grey',
width: 1.5,
dash: 'dot'
}
}, {
type: 'line',
x0: '2000-01-17',
y0: 0,
x1: '2000-01-17',
y1: Math.min(...trace1.y),
line: {
color: 'grey',
width: 1.5,
dash: 'dot'
}
}, {
type: 'line',
x0: '2000-01-02',
y0: 0,
x1: '2000-01-02',
y1: trace1.y[trace1.x.indexOf('2000-01-02')],
line: {
color: 'grey',
width: 1.5,
dash: 'dot'
}
}],
title: '2000 Toronto January Weather'
};

Plotly.plot('myDiv', data, layout);
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>

<div id="myDiv" style="width:100%;height:400px;"></div>

关于javascript - 使用 Plotly.js 自定义垂直线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42423167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com