Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed translated content for 'zh'
Sv translation
languageen

Bullet chart

JSON used as input for Bullet chart rendering consists of multiple elements.

Table of Contents
minLevel3

Basic structure

Code Block
{
  "t_axis": {
    "labels": {
      "labels": [ ... ]
    }
  }
  "elements": [
    {
      "type": "bullet",
      "values": [ ... ]
    }
  ]
}

Common elements

NameDescriptionExample
chartId
Chart view identifier. Refer to REST API.
chart_3-FDEp6Q41fb_s3fwVc7F9H
bg_color
Defines the color of the background for the entire chart
#e5e5e5
is_decimal_separator_comma
Determines whether to use comma as decimal separator. [0, 1]1
is_thousand_separator_disabled
Determines whether to use the thousands separator or not. [0, 1]1
tooltip

Defines the basic tooltip settings for the entire chart.

NameDescriptionExample
mouse
Mouse sensitivity2
shadow
[true, false]true
stroke
[0, 1]1
colour
Default font color for tooltips
#202020
background
Default background for tooltips.
"#ffffff"
 

Example

Code Block
{
	"chartId": "chart_3-FDEp6Q41fb_s3fwVc7F9H",
	"bg_colour": "#e5e5e5",
	"is_decimal_separator_comma": 1,
	"is_thousand_separator_disabled": 1,
	"tooltip": {
	    "mouse": "2",
    	"shadow": true,
	    "stroke": 1,
	    "colour": "#202020",
	    "background": "#ffffff"
	},
	"options": {}
} 

"t_axis" content

T axis is defined by min and max value, size of one step (steps) and labels. Each label consists of value on T axis (y) and displayed text. You can specify also colour and grid-colour for T axis.

NameDescriptionExample
colour
Color of the axis label
#e9e9e9
grid-colour
Color of the T-axis grid (vertical)
#e9e9e9
steps
Size of the steps of the axis100000
min
Minimal value displayed on the axis0
max
Maximal value displayed on the axis800000
labels

Nested object defining the axis labels

NameDescriptionExample
colour
Color of the labels
#4e4e4e
labels
Array of label and values
[ { "text": "0 USD", "y": 0 }, { "text": "100.000 USD", "y": 100000 } ]
 

 

Example:

Code Block
"t_axis": {
    "colour": "#e9e9e9",
    "grid-colour": "#e9e9e9",
    "steps": 100000,
    "min": 0,
    "max": 800000,
    "labels": {
      "colour": "#4e4e4e",
      "labels": [
        { "text": "0 USD", "y": 0 },
        { "text": "100.000 USD", "y": 100000 },
        { "text": "200.000 USD", "y": 200000 },
        { "text": "300.000 USD", "y": 300000 },
        { "text": "400.000 USD", "y": 400000 },
        { "text": "500.000 USD", "y": 500000 },
        { "text": "600.000 USD", "y": 600000 },
        { "text": "700.000 USD", "y": 700000 },
        { "text": "800.000 USD", "y": 800000 }
      ]
    }
  }

"elements" content

Each object in array elements describe one chart element. In example below we have only one element that has type bullet and contains array with 4 values. Each value object consists of value, label, tool tip, context and colour.

NameDescriptionExample
type
Type of the chart. For bullet chart, the value is "bullet"bullet
values
NameDescriptionExample
value
Numerical value specifying the top position of a bar123456.789
tip
Tooltip text to display on mouse hoverThis is tooltip
label
Value label displayed next to dot (optional)This is label
colour
Colour of the bar#4379bd
context
If defined, context will be send to the client as event parameter 
 
Code Block
 "elements": [
    {
      "type": "bullet",
      "values": [
        {
          "value": 444835.123456789,
          "label": "Austria",
          "tip": "Austria\n444835 USD",
          "colour": "#4379bd",
          "context": "{\"dataLink\":\"3_-2043221543\",\"identifierQuery\":\"[L_COUNTRY={Austria}]\"}"
        },
        {
          "value": 730974,
          "label": "Canada",
          "tip": "Canada\n730974 USD",
          "colour": "#b5cb04",
          "context": "{\"dataLink\":\"3_-1852385212\",\"identifierQuery\":\"[L_COUNTRY={Canada}]\"}"
        },
        {
          "value": 546650,
          "label": "France",
          "tip": "France\n546650 USD",
          "colour": "#ff4800",
          "context": "{\"dataLink\":\"3_-1863819183\",\"identifierQuery\":\"[L_COUNTRY={France}]\"}"
        },
        {
          "value": 643782,
          "label": "Germany",
          "tip": "Germany\n643782 USD",
          "colour": "#aabbcc",
          "context": "{\"dataLink\":\"3_-547347785\",\"identifierQuery\":\"[L_COUNTRY={Germany}]\"}"
        }
      ]
    }
  ]

Examples

Attachments
uploadfalse
oldfalse
sortByname

 

Sv translation
languageja

ブレットチャート

ブレットチャートレンダリングの入力として使用されるJSONは、複数の要素で構成されています。

Table of Contents
minLevel3

基本的な構造

Code Block
{
  "t_axis": {
    "labels": {
      "labels": [ ... ]
    }
  }
  "elements": [
    {
      "type": "bullet",
      "values": [ ... ]
    }
  ]
}

共通の要素 

説明
chartId
チャートビュー識別子。 RESTAPIをご参照してください。
chart_3-FDEp6Q41fb_s3fwVc7F9H
bg_color
チャートの全体に背景の色を定義します
#e5e5e5
is_decimal_separator_comma
小数点記号としてカンマを使用/非使用を決定する。 [0, 1]1
is_thousand_separator_disabled

桁区切りを使用/非使用を判断します。[0, 1]

1
tooltip

チャートの全体に基本的なツールチップの設定を定義します

説明
mouse
マウス感度2
shadow
[true, false]true
stroke
[0, 1]1
colour
ツールチップのの色フォントデフォルト
#202020
background
ツールチップの背景デフォルト
"#ffffff"
 

Code Block
{
	"chartId": "chart_3-FDEp6Q41fb_s3fwVc7F9H",
	"bg_colour": "#e5e5e5",
	"is_decimal_separator_comma": 1,
	"is_thousand_separator_disabled": 1,
	"tooltip": {
	    "mouse": "2",
    	"shadow": true,
	    "stroke": 1,
	    "colour": "#202020",
	    "background": "#ffffff"
	},
	"options": {}
} 

「t_axis」コンテンツ 

T軸は、最小値と最大値、一つステップのサイズ(ステップ)とラベルによって定義されます。各ラベルは、T軸(y)上の値が含まれて、テキストを表示しました。また、T軸の色グリッドを指定できます。

説明
colour
軸ラベルの色
#e9e9e9
grid-colour
T軸グリッドの色(垂直)
#e9e9e9
steps
軸ステップサイズ100000
min
軸上に表示した最小値0
max
軸上に表示した最大値800000
labels

ネストされたオブジェクト軸ラベルを定義します

説明
colour
ラベルの色
#4e4e4e
labels
ラベルと値の配列
[ { "text": "0 USD", "y": 0 }, { "text": "100.000 USD", "y": 100000 } ]
 

 

例:

Code Block
"t_axis": {
    "colour": "#e9e9e9",
    "grid-colour": "#e9e9e9",
    "steps": 100000,
    "min": 0,
    "max": 800000,
    "labels": {
      "colour": "#4e4e4e",
      "labels": [
        { "text": "0 USD", "y": 0 },
        { "text": "100.000 USD", "y": 100000 },
        { "text": "200.000 USD", "y": 200000 },
        { "text": "300.000 USD", "y": 300000 },
        { "text": "400.000 USD", "y": 400000 },
        { "text": "500.000 USD", "y": 500000 },
        { "text": "600.000 USD", "y": 600000 },
        { "text": "700.000 USD", "y": 700000 },
        { "text": "800.000 USD", "y": 800000 }
      ]
    }
  }

「要素」コンテンツ 

要素配列内の各オブジェクトは、1つのチャート要素を記述します要素配列。以下の例で、ブレットタイプを持つ要素が1つしかなく、値は4の配列が含まれています。各値オブジェクトはラベルツールチップコンテキスト及びカラーで構成されています。

説明
type
チャートのタイプ。ブレットチャートの場合、値は"bullet"としますbullet
values
説明
value
棒の上部の位置を指定する数値123456.789
tip
マウスホバーに表示するツールチップテキストこれは、ツールチップです
label
値ラベルは、ドットの横に表示されます(任意)これはラベルです
colour
棒の色#4379bd
context
定義されている場合、コンテキストがイベントパラメータとしてクライアントに送信されます 
 
Code Block
 "elements": [
    {
      "type": "bullet",
      "values": [
        {
          "value": 444835.123456789,
          "label": "Austria",
          "tip": "Austria\n444835 USD",
          "colour": "#4379bd",
          "context": "{\"dataLink\":\"3_-2043221543\",\"identifierQuery\":\"[L_COUNTRY={Austria}]\"}"
        },
        {
          "value": 730974,
          "label": "Canada",
          "tip": "Canada\n730974 USD",
          "colour": "#b5cb04",
          "context": "{\"dataLink\":\"3_-1852385212\",\"identifierQuery\":\"[L_COUNTRY={Canada}]\"}"
        },
        {
          "value": 546650,
          "label": "France",
          "tip": "France\n546650 USD",
          "colour": "#ff4800",
          "context": "{\"dataLink\":\"3_-1863819183\",\"identifierQuery\":\"[L_COUNTRY={France}]\"}"
        },
        {
          "value": 643782,
          "label": "Germany",
          "tip": "Germany\n643782 USD",
          "colour": "#aabbcc",
          "context": "{\"dataLink\":\"3_-547347785\",\"identifierQuery\":\"[L_COUNTRY={Germany}]\"}"
        }
      ]
    }
  ]

 

Attachments
uploadfalse
oldfalse
sortByname