问题描述
我尝试了多种方法将绘制的多边形放在绘图下方。
<head>
<script src='https://cdn.plot.ly/plotly-latest.min.js'></script>
</head>
<div id='myDiv'><!-- Plotly chart will be drawn inside this DIV --></div>
<script>
function plot(number)
{
var y = [];
for (var i = 0; i < 500; i ++) {
y[i] = Math.random();
}
var data = [
{
y: y,type: 'histogram',marker: {
color: 'deepskyblue',},}
];
Plotly.newPlot('myDiv',data);
}
plot(600);
</script>
现在多边形为layer
,如何使用bind
在多边形的弹出窗口中显示顶部图?
layer.bindPopup(???)
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)