forked from github/dataease
feat(图表): 透视表支持树形展示 #8509
This commit is contained in:
parent
daa7789590
commit
406167735a
@ -1110,7 +1110,10 @@ export default {
|
|||||||
quadrant: '象限',
|
quadrant: '象限',
|
||||||
font_size: '字号',
|
font_size: '字号',
|
||||||
word_size_range: '字号区间',
|
word_size_range: '字号区间',
|
||||||
word_spacing: '文字间隔'
|
word_spacing: '文字间隔',
|
||||||
|
table_layout_mode: '展示形式',
|
||||||
|
table_layout_grid: '平铺展示',
|
||||||
|
table_layout_tree: '树形展示'
|
||||||
},
|
},
|
||||||
dataset: {
|
dataset: {
|
||||||
scope_edit: '仅编辑时生效',
|
scope_edit: '仅编辑时生效',
|
||||||
|
@ -96,6 +96,10 @@ declare interface ChartBasicStyle {
|
|||||||
* 表格分页大小
|
* 表格分页大小
|
||||||
*/
|
*/
|
||||||
tablePageSize: number
|
tablePageSize: number
|
||||||
|
/**
|
||||||
|
* 表格展示形式,平铺和树形
|
||||||
|
*/
|
||||||
|
tableLayoutMode: 'grid' | 'tree'
|
||||||
/**
|
/**
|
||||||
* 仪表盘样式
|
* 仪表盘样式
|
||||||
*/
|
*/
|
||||||
|
@ -198,6 +198,23 @@ onMounted(() => {
|
|||||||
</el-checkbox>
|
</el-checkbox>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item
|
||||||
|
class="form-item"
|
||||||
|
v-if="showProperty('tableLayoutMode')"
|
||||||
|
:label="t('chart.table_layout_mode')"
|
||||||
|
:class="'form-item-' + themes"
|
||||||
|
>
|
||||||
|
<el-radio-group
|
||||||
|
size="small"
|
||||||
|
:effect="themes"
|
||||||
|
v-model="state.basicStyleForm.tableLayoutMode"
|
||||||
|
@change="changeBasicStyle('tableLayoutMode')"
|
||||||
|
>
|
||||||
|
<el-radio label="grid">{{ t('chart.table_layout_grid') }}</el-radio>
|
||||||
|
<el-radio label="tree">{{ t('chart.table_layout_tree') }}</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
<div class="alpha-setting" v-if="showProperty('alpha')">
|
<div class="alpha-setting" v-if="showProperty('alpha')">
|
||||||
<label class="alpha-label" :class="{ dark: 'dark' === themes }">
|
<label class="alpha-label" :class="{ dark: 'dark' === themes }">
|
||||||
{{ t('chart.not_alpha') }}
|
{{ t('chart.not_alpha') }}
|
||||||
|
@ -1382,7 +1382,8 @@ export const DEFAULT_BASIC_STYLE: ChartBasicStyle = {
|
|||||||
innerRadius: 60,
|
innerRadius: 60,
|
||||||
showZoom: true,
|
showZoom: true,
|
||||||
zoomButtonColor: '#aaa',
|
zoomButtonColor: '#aaa',
|
||||||
zoomBackground: '#fff'
|
zoomBackground: '#fff',
|
||||||
|
tableLayoutMode: 'grid'
|
||||||
}
|
}
|
||||||
|
|
||||||
export const BASE_VIEW_CONFIG = {
|
export const BASE_VIEW_CONFIG = {
|
||||||
|
@ -37,7 +37,13 @@ export class TablePivot extends S2ChartView<PivotSheet> {
|
|||||||
'showRowTooltip'
|
'showRowTooltip'
|
||||||
],
|
],
|
||||||
'table-total-selector': ['row', 'col'],
|
'table-total-selector': ['row', 'col'],
|
||||||
'basic-style-selector': ['tableColumnMode', 'tableBorderColor', 'tableScrollBarColor', 'alpha']
|
'basic-style-selector': [
|
||||||
|
'tableColumnMode',
|
||||||
|
'tableBorderColor',
|
||||||
|
'tableScrollBarColor',
|
||||||
|
'alpha',
|
||||||
|
'tableLayoutMode'
|
||||||
|
]
|
||||||
}
|
}
|
||||||
axis: AxisType[] = ['xAxis', 'xAxisExt', 'yAxis', 'filter']
|
axis: AxisType[] = ['xAxis', 'xAxisExt', 'yAxis', 'filter']
|
||||||
axisConfig: AxisConfig = {
|
axisConfig: AxisConfig = {
|
||||||
@ -104,7 +110,7 @@ export class TablePivot extends S2ChartView<PivotSheet> {
|
|||||||
|
|
||||||
// total config
|
// total config
|
||||||
const customAttr = parseJson(chart.customAttr)
|
const customAttr = parseJson(chart.customAttr)
|
||||||
const { tableTotal } = customAttr
|
const { tableTotal, basicStyle } = customAttr
|
||||||
tableTotal.row.subTotalsDimensions = r
|
tableTotal.row.subTotalsDimensions = r
|
||||||
tableTotal.col.subTotalsDimensions = c
|
tableTotal.col.subTotalsDimensions = c
|
||||||
|
|
||||||
@ -182,7 +188,8 @@ export class TablePivot extends S2ChartView<PivotSheet> {
|
|||||||
height: containerDom.offsetHeight,
|
height: containerDom.offsetHeight,
|
||||||
style: this.configStyle(chart),
|
style: this.configStyle(chart),
|
||||||
totals: tableTotal,
|
totals: tableTotal,
|
||||||
conditions: this.configConditions(chart)
|
conditions: this.configConditions(chart),
|
||||||
|
hierarchyType: basicStyle.tableLayoutMode ?? 'grid'
|
||||||
}
|
}
|
||||||
|
|
||||||
// 开始渲染
|
// 开始渲染
|
||||||
|
Loading…
Reference in New Issue
Block a user