File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
x-pack/plugins/ml/public/application/components/data_grid/feature_importance Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,8 @@ export const DecisionPathChart = ({
9292 const baselineData : LineAnnotationDatum [ ] = useMemo (
9393 ( ) => [
9494 {
95- dataValue : baseline ? baseline : undefined ,
95+ dataValue : baseline ,
96+ header : baseline ? baseline . toPrecision ( NUM_PRECISION ) : '' ,
9697 details : i18n . translate (
9798 'xpack.ml.dataframe.analytics.explorationResults.decisionPathBaselineText' ,
9899 {
@@ -118,7 +119,6 @@ export const DecisionPathChart = ({
118119 dataValues = { baselineData }
119120 style = { baselineStyle }
120121 marker = { AnnotationBaselineMarker }
121- header = { baseline . toPrecision ( NUM_PRECISION ) }
122122 />
123123 ) }
124124
@@ -132,7 +132,7 @@ export const DecisionPathChart = ({
132132 values : { predictionFieldName } ,
133133 }
134134 ) }
135- showGridLines = { true }
135+ showGridLines = { false }
136136 position = { Position . Top }
137137 showOverlappingTicks
138138 domain = {
You can’t perform that action at this time.
0 commit comments