GroupAxis
名稱:Group Axis(Group 圖軸)
說明:Group 圖軸(預設為 X 軸,標籤文字對應
dataFormatter$
中的columnLabels
)使用方式:圖軸的格式會搭配
dataFormatter
的groupAxis
欄位設定,詳細 API 請參考文件(不過大部份情況下如已使用Preset
則不太需要自行設定dataFormatter
,較常使用的是圖軸標籤的設定)圖軸標籤設定:使用
dataFormatter
的groupAxis.label
設定標籤文字,範例如下:
chart.dataFormatter$.next({
groupAxis: {
label: '地區'
}
})
params$
型別:
Partial<GroupAxisParams>
欄位:
名稱 說明 型別 labelOffset 圖軸標籤位移 [number, number]
labelColorType 圖軸標籤顏色類別 ColorType
axisLineVisible 顯示圖軸線 boolean
axisLineColorType 圖軸線顏色類別 ColorType
ticks 刻度數量
*number
: 合適數量
*null
: 自動判斷all
: 全部number | null | 'all'
tickFormat 刻度文字格式
*string
: 以d3-format
格式 進行註記
*Function
: 自訂 function 回傳顯示文字)string | ((text: d3.NumberValue) => string | d3.NumberValue
tickLineVisible 顯示刻度線 boolean
tickPadding 刻度和文字的距離 number
tickFullLine 將刻度線顯示在整個場景上 boolean
tickFullLineDasharray 設定刻度線虛線格式(搭配 tickFullLine
為true
)string
tickColorType 刻度顏色類別 ColorType
tickTextRotate 刻度文字旋轉 number
tickTextColorType 刻度文字顏色類別 ColorType
詳細型別
type ColorType = 'none' | 'label' | 'labelContrast' | 'primary' | 'secondary' | 'background'
- 預設值:
{
labelOffset: [0, 0],
labelColorType: 'primary',
axisLineVisible: true,
axisLineColorType: 'primary',
ticks: 'all',
tickFormat: text => text,
tickLineVisible: true,
tickPadding: 20,
tickFullLine: false,
tickFullLineDasharray: 'none',
tickColorType: 'secondary',
tickTextRotate: 0,
tickTextColorType: 'primary',
}