第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)法通過(guò)設(shè)置標(biāo)記類(lèi)型來(lái)擴(kuò)展跡線(xiàn)

無(wú)法通過(guò)設(shè)置標(biāo)記類(lèi)型來(lái)擴(kuò)展跡線(xiàn)

慕的地6264312 2023-10-14 18:25:29
通過(guò)下面的代碼,我嘗試創(chuàng)建一個(gè)簡(jiǎn)單的氣泡圖。我創(chuàng)建了一個(gè)跟蹤以便稍后擴(kuò)展它:    var t9 = {        x: [100821],        y: [11],        name: 'Some text',        text: ['Some text'],        mode: ['markers'],        marker: [{          size: [1531*10],          sizeref: 2,          sizemode: 'area'        }]      };    var data = [t9];var layout = {  title: 'Chart',  showlegend: true,  xaxis: {    title: 'Some text'  },  yaxis: {    title: 'Some text'  }};var config = {responsive: true}Plotly.newPlot('plot', data, layout, config);        Plotly.extendTraces(          'plot',         {          x: [[5491]],          y: [[5]],          text: [['Some text']],          mode: [['markers']],          marker: [[{            size: 123*100,            sizeref: 2,            sizemode: 'area'          }]]        }, [0]);                Plotly.extendTraces(          'plot',         {          x: [[60022]],          y: [[11]],          text: [['Some text']],          mode: [['markers']],          marker: [[{            size: 982*100,            sizeref: 2,            sizemode: 'area'          }]]        }, [0]);<head>  <!-- Plotly.js -->  <script src="https://cdn.plot.ly/plotly-latest.min.js"></script></head><html>  <body>    <div id="plot"></div>  </body></html>結(jié)果是這樣的:正如您所看到的,標(biāo)記不會(huì)占用該屬性mode: ['markers']和所有屬性markers:。知道如何獲得像本頁(yè)這樣的結(jié)果嗎? https://plotly.com/javascript/bubble-charts/
查看完整描述

1 回答

?
慕俠2389804

TA貢獻(xiàn)1719條經(jīng)驗(yàn) 獲得超6個(gè)贊

如果您使用extendTraces并想要更新屬性,例如標(biāo)記大小,您需要以字符串形式提供屬性,例如,marker.size并且值必須是數(shù)組,就像新的 x 和 y 值一樣。


Plotly.extendTraces(

  'plot', 

  {

    x: [[5491]],

    y: [[5]],

    'marker.size':[[40*100]]

  }, [0]);

您的初始數(shù)據(jù)和屬性應(yīng)該是一個(gè)簡(jiǎn)單的數(shù)組或?qū)ο?,而不是?shù)組/對(duì)象的數(shù)組。

https://img1.sycdn.imooc.com/652a6d5a00017f2d11560447.jpg

 var t9 = {

  x: [100821],

  y: [11],

  name: 'Some text',

  text: 'Some text',

  mode: 'markers',

  marker: {

    size: [15*100],

    sizeref: 1,

    sizemode: 'area'

  }

};


var data = [t9];


var layout = {

  title: 'Chart',

  showlegend: true,

  xaxis: {

    title: 'Some text'

  },

  yaxis: {

    title: 'Some text',

    range: [-12, 30]

  }

};


var config = {responsive: true}


Plotly.newPlot('plot', data, layout, config);



Plotly.extendTraces(

  'plot', 

  {

    x: [[5491]],

    y: [[5]],

    'marker.size':[[40*100]]

  }, [0]);


Plotly.extendTraces(

  'plot', 

  {

    x: [[60022]],

    y: [[11]],

   'marker.size':[[200*100]] 

  }, [0]);

<head>

  <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>

</head>


<div id='plot'>


</div>


查看完整回答
反對(duì) 回復(fù) 2023-10-14
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)