Wijmo UI for the Web
chartLabelStyle フィールド

各チャート要素の値を示すチャートラベルのすべてのスタイルオプションを設定します。

型: Object

デフォルト値: {}

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: any
    returnsValue = $(".selector").wijbarchart("option", "chartLabelStyle");
    
    //値を設定します
    var newValue; //タイプ: any
    $(".selector").wijbarchart("option", "chartLabelStyle", newValue);
        
});
Javascript (Specification) 
var chartLabelStyle : any;
使用例
$("#wijbarchart").wijbarchart({
    chartLabelStyle: {
        fill: "black", 
        "fill-opacity": 0.15, 
        "font-size": 24
    }
)};
解説

Any style options set in the fallback textStyle option are used for any style options that are not set explicitly (or set by default) in this option.

For more information on the available style parameters, see the Style Options topic. For information on changing the numeric format of these labels, see chartLabelFormatString, or to hide them, see showChartLabels. See also Rotate Bar Labels.

The style object is defined in RaphaelJS, in the attr method’s parameters. Here is an external link to the documentation: http://raphaeljs.com/reference.html#Element.attr

関連トピック

参照

options タイプ
スタイルオプション
棒のラベルの回転
chartLabelFormatString オプション
wijbarchart メソッド

 

 


Copyright © GrapeCity inc. All rights reserved.