File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ export const dimensionStatisticsOfSimpleData = (
143
143
if ( f . customize ) {
144
144
result [ key ] [ op ] = f . customize ;
145
145
} else {
146
- if ( dataFieldInKey && dataFieldInKey . lockStatisticsByDomain && ! isNil ( dataFieldInKey . domain ) ) {
146
+ if ( dataFieldInKey && dataFieldInKey . lockStatisticsByDomain === true && ! isNil ( dataFieldInKey . domain ) ) {
147
147
if ( op === 'values' ) {
148
148
result [ key ] [ op ] = dataFieldInKey . domain . slice ( ) ;
149
149
return ;
Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ export abstract class BaseSeries<T extends ISeriesSpec> extends BaseModel<T> imp
419
419
} else if ( this . _rawData ) {
420
420
// 如果有设置统计信息,应当与设置值保持一致
421
421
const fieldInfo = this . _rawData . getFields ( ) ?. [ field ] ;
422
- if ( fieldInfo && fieldInfo . domain ) {
422
+ if ( fieldInfo && fieldInfo . lockStatisticsByDomain && fieldInfo . domain ) {
423
423
this . _rawStatisticsCache [ field ] = { } ;
424
424
if ( isNumeric ) {
425
425
this . _rawStatisticsCache [ field ] . min = minInArray ( fieldInfo . domain ) ;
Original file line number Diff line number Diff line change @@ -279,12 +279,18 @@ export type BuildInTransformOptions =
279
279
export interface IFieldsMeta {
280
280
/** TODO: 字段通用format, 暂时先不支持 */
281
281
// format?: (datum: Datum, index: number) => unknown;
282
- /** 字段别名 */
282
+ /**
283
+ * 字段别名
284
+ */
283
285
alias ?: string ;
284
286
/** 字段取值范围 */
285
287
domain ?: StringOrNumber [ ] ;
286
- /** 是否使用 domain 锁定统计信息。默认为 false */
287
- lockStatisticsByDomain ?: boolean ;
288
+ /**
289
+ * 是否使用 domain 锁定统计信息。默认为 false
290
+ * true - 在图例交互场景,也固定domain
291
+ * 当设置为 `onlyFull` 时,仅在初始化的展示完整数据的场景锁定domain,在交互触发的筛选场景不锁定
292
+ */
293
+ lockStatisticsByDomain ?: boolean | 'onlyFull' ;
288
294
/** 连续型 还是 离散型 */
289
295
type ?: 'ordinal' | 'linear' ;
290
296
/** 排序顺序 不设置的话当前维度不进行排序 */
You can’t perform that action at this time.
0 commit comments