wijmo.chart.wijchartcore 名前空間 > options タイプ : header オプション |
棒グラフのヘッダとして使用するオブジェクトを設定します。
型: wijmo.chart.chart_title オブジェクト
デフォルト値:
{ visible: true, style: {fill: "none", stroke: "none"}, textStyle: {"font-size": 18, fill: "#666", stroke: "none"}, compass: "north", orientation: "horizontal" }
Javascript (Usage) | |
---|---|
$(function () { //値を取得する var returnsValue; //タイプ: wijmo.chart.chart_title returnsValue = $(".selector").wijchartcore("option", "header"); //値を設定します var newValue; //タイプ: wijmo.chart.chart_title $(".selector").wijchartcore("option", "header", newValue); }); |
Javascript (Specification) | |
---|---|
var header : chart_title; |
以下のコードは、次の図のようなヘッダを持つチャートを作成します。
<script type="text/javascript"> $(document).ready(function () { $("#wijbubblechart").wijbubblechart({ axis: { //sets the title text for the Y axis y: {text: "Number of Products"}, //sets the title text for the X axis and formats //the X axis labels as currency with no decimal spaces x: {text: "Sales", annoFormatString: "C0"} }, header: { //sets the background color of the header to pale grey style: {fill: "gainsboro"}, //sets the text to display in the header text: "Market Share by Company", //sets the header text style textStyle: {"font-size": 24, fill: "blueviolet"} }, //hides the legend legend: {visible: false}, //adds three data series to the chart seriesList: [ { //sets the text to use in the tooltip for the bubble label: "Company A Market Share", //sets the Y value (number of products), //the X value (sales), and the Y1 (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>