2017-04-04 61 views
0

我想給谷歌組合圖上的註釋提供不同的colorauraColor。任何人都可以說是否可行,以及如何?如何在註釋上設置不同的顏色?

這是當前選項;

annotations: { 
      stemColor: 'none', 
      textStyle: { 
       fontName: 'Arial', 
       color: 'white', 
       auraColor: 'grey', 
       fontSize: 11, 
       alwaysOutside: true, 
      } 
     }, 

此外,我已經嘗試過,但它不工作;

annotations: { 
      0:{stemColor: 'none', 
       textStyle: { 
        fontName: 'Arial', 
        color: 'white', 
        auraColor: 'grey', 
        fontSize: 11, 
        alwaysOutside: true 
       }}, 
      1:{stemColor: 'none', 
       textStyle: { 
        fontName: 'Arial', 
        color: 'black', 
        auraColor: 'red', 
        fontSize: 11, 
        alwaysOutside: true, 
       }}, 
      2:{stemColor: 'none', 
       textStyle: { 
        fontName: 'Arial', 
        color: 'blue', 
        auraColor: 'white', 
        fontSize: 11, 
        alwaysOutside: true, 
       }}     
     }, 

提前感謝使用series選項

回答

0

試...

series: { 
    0:{ 
    annotations: { 
     stemColor: 'none', 
     textStyle: { 
     fontName: 'Arial', 
     color: 'white', 
     auraColor: 'grey', 
     fontSize: 11, 
     alwaysOutside: true 
     } 
    } 
    }, 
    1:{ 
    annotations: { 
     stemColor: 'none', 
     textStyle: { 
     fontName: 'Arial', 
     color: 'black', 
     auraColor: 'red', 
     fontSize: 11, 
     alwaysOutside: true, 
     } 
    } 
    }, 
    ... 
+0

是的,這就是我要找的。謝謝 :) –

相關問題