// 以下のコードは、凡例を持つチャートを作成します。凡例はチャートの下部(south) // に配置され、系列ラベルと色が横向き(horizontal)に並べられます。塗りつぶし色は明るい灰色、// 輪郭色は灰色で(style)、"Legend" というタイトルが付いています(text)。テキストの周囲には // 5 ピクセルの余白があり(textMargin)、系列ラベルは 12 ポイントの黒いフォント(textStyle)、// タイトルは 14 ポイントのフォント(titleStyle)で表示されます。 $(document).ready(function () { $("#wijbarchart").wijbarchart({ legend: { compass: "south", orientation: "horizontal", style: {fill: "gainsboro", stroke: "grey"}, text: "Legend", textMargin: {left: 5, top: 5, right: 5, bottom: 5 }, textStyle: {fill: "black", "font-size": 12}, titleStyle: {"font-size": 14} }, seriesList: [{ label: "US", data: { x: ['PS3', 'XBOX360', 'Wii'], y: [12.35, 21.50, 30.56] } }, { label: "Japan", data: { x: ['PS3', 'XBOX360', 'Wii'], y: [4.58, 1.23, 9.67] } }, { label: "Other", data: { x: ['PS3', 'XBOX360', 'Wii'], y: [31.59, 37.14, 65.32] } }], });});