Wijmo UI for the Web
calloutFilledStyle フィールド
コールアウト(メインのヒントボックスから対象のバブルを指す小さい三角形)のレンダリングに使用するスタイルを示す値。コールアウトのこの属性を有効にするには、calloutFilled 属性も true に設定する必要があります。それ以外の場合は、ヒントの style 属性の色が使用されます。使用可能なスタイルパラメーターの詳細については、「スタイルのオプション」トピックを参照してください。
デフォルト値: {fill:"#000"}
型: Object
シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.chart.chart_hint;
var value; // Type: any
value = instance.calloutFilledStyle;
Javascript (Specification) 
var calloutFilledStyle : any;
使用例

以下のサンプルは、各種要素を見分けやすくするため、ヒントの calloutFilled 属性を true に設定し、calloutFilledStyle の塗りつぶし色と輪郭色を赤に設定し、ヒントの style を青い輪郭の紫に設定します。

<script type="text/javascript">
$(document).ready(function () {
    $("#wijbubblechart").wijbubblechart({
        axis: {
            y: {text: "Number of Products"},
            x: {text: "Sales", annoFormatString: "C0"}
        },
        hint: {
            calloutFilled: true,
            calloutFilledStyle: {fill: "red", stroke: "red"},
            style: {fill: "purple", "stroke-width": "2", stroke: "blue"},
            content: function(){
                return this.data.label + '\n' + 
                Globalize.format(this.y1, "p0") + ' ';
            }
        },
        legend: {visible: false},
        seriesList: [
        {
            label: "Company A Market Share",
            data: { y: [14], x: [12200], y1: [.15] }
        }, {
            label: "Company B Market Share",
            data: { y: [20], x: [60000], y1: [.23] }
        }, {
            label: "Company C Market Share",
            data: { y: [18], x: [24400], y1: [.1] }
        }]
    });
});
</script>
解説
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

関連トピック

参照

chart_hint インターフェース

 

 


Copyright © GrapeCity inc. All rights reserved.