Wijmo UI for the Web
style フィールド
チャートラベルに適用するスタイルオブジェクトを示す値。詳細については、「スタイルオプション」を参照してください。
シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.chart.piechart_labels;
var value; // Type: any
value = instance.style;
Javascript (Specification) 
var style : any;
使用例
labels: {
    style: {
        "font-size": 11
    },
    formatter: function () {
        return this.chartLabel + " : " + Globalize.format(this.value / this.total, "p2");
    },
    connectorStyle: {
        fill: "red",
        stroke: "red",
        "stroke-width": 2
    },
    position: "outside",
    offset: 30
}
解説
Note: 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. 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

関連トピック

参照

piechart_labels インターフェース

 

 


Copyright © GrapeCity inc. All rights reserved.