@@ -447,25 +447,25 @@ export abstract class DataFilterBaseComponent<T extends IDataFilterComponentSpec
447447 s . coordinate === 'cartesian'
448448 ? ( s as ICartesianSeries ) . getXAxisHelper ( )
449449 : s . coordinate === 'polar'
450- ? ( s as IPolarSeries ) . angleAxisHelper
451- : null ;
450+ ? ( s as IPolarSeries ) . angleAxisHelper
451+ : null ;
452452 const yAxisHelper =
453453 s . coordinate === 'cartesian'
454454 ? ( s as ICartesianSeries ) . getYAxisHelper ( )
455455 : s . coordinate === 'polar'
456- ? ( s as IPolarSeries ) . radiusAxisHelper
457- : null ;
456+ ? ( s as IPolarSeries ) . radiusAxisHelper
457+ : null ;
458458 if ( ! xAxisHelper || ! yAxisHelper ) {
459459 return ;
460460 }
461461 const stateAxisHelper =
462462 xAxisHelper . getAxisId ( ) === this . _relatedAxisComponent . id
463463 ? xAxisHelper
464464 : yAxisHelper . getAxisId ( ) === this . _relatedAxisComponent . id
465- ? yAxisHelper
466- : this . _isHorizontal
467- ? xAxisHelper
468- : yAxisHelper ;
465+ ? yAxisHelper
466+ : this . _isHorizontal
467+ ? xAxisHelper
468+ : yAxisHelper ;
469469 const valueAxisHelper = stateAxisHelper === xAxisHelper ? yAxisHelper : xAxisHelper ;
470470 const isValidateValueAxis = isContinuous ( valueAxisHelper . getScale ( 0 ) . type ) ;
471471 const isValidateStateAxis = isContinuous ( stateAxisHelper . getScale ( 0 ) . type ) ;
@@ -640,8 +640,8 @@ export abstract class DataFilterBaseComponent<T extends IDataFilterComponentSpec
640640 start = this . _spec . start
641641 ? this . _spec . start
642642 : this . _spec . startValue
643- ? this . dataToStatePoint ( this . _spec . startValue )
644- : 0 ;
643+ ? this . dataToStatePoint ( this . _spec . startValue )
644+ : 0 ;
645645 end = this . _spec . end ? this . _spec . end : this . _spec . endValue ? this . dataToStatePoint ( this . _spec . endValue ) : 1 ;
646646 }
647647 this . _startValue = this . statePointToData ( start ) ;
@@ -899,7 +899,7 @@ export abstract class DataFilterBaseComponent<T extends IDataFilterComponentSpec
899899
900900 protected _initCommonEvent ( ) {
901901 const delayType : IDelayType = this . _spec ?. delayType ?? 'throttle' ;
902- const delayTime = isValid ( this . _spec ?. delayType ) ? ( this . _spec ?. delayTime ?? 30 ) : 0 ;
902+ const delayTime = isValid ( this . _spec ?. delayType ) ? this . _spec ?. delayTime ?? 30 : 0 ;
903903 const realTime = this . _spec ?. realTime ?? true ;
904904 const option = { delayType, delayTime, realTime, allowComponentZoom : true } ;
905905 if ( this . _zoomAttr . enable ) {
0 commit comments