Wijmo UI for the Web
chartLabel フィールド

型: wijmo.chart.bubblechart_chartlabel

チャートの各バブルのラベルの描画に使用されるすべての設定を定義する chartLabel オブジェクトを作成します。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: wijmo.chart.bubblechart_chartlabel
    returnsValue = $(".selector").wijbubblechart("option", "chartLabel");
    
    //値を設定します
    var newValue; //タイプ: wijmo.chart.bubblechart_chartlabel
    $(".selector").wijbubblechart("option", "chartLabel", newValue);
        
});
Javascript (Specification) 
var chartLabel : bubblechart_chartlabel;
使用例
// 以下のコードは、ラベルが各バブルの外側(の南側)に配置されたバブルチャートを作成します。 // ラベルは小数点なしのパーセント数値として書式設定され、紫色の 14 ポイントのフォントで表示されます。$(document).ready(function () {$("#wijbubblechart").wijbubblechart({ axis: { y: { text: "Number of Products" }, x: { text: "Sales", annoFormatString: "C0" } }, chartLabel: { chartLabelFormatString: "P0", compass: "south", position: "outside", style: { fill: "purple", "font-size": 14 } }, 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] } }]});});

関連トピック

参照

options タイプ
wijbubblechart メソッド

 

 


Copyright © GrapeCity inc. All rights reserved.