diff --git a/website/src/data/components/heatmap/props.ts b/website/src/data/components/heatmap/props.ts index ebe800b6c1..19ee985b1e 100644 --- a/website/src/data/components/heatmap/props.ts +++ b/website/src/data/components/heatmap/props.ts @@ -33,45 +33,6 @@ const props: ChartProperty[] = [ \`\`\` `, }, - { - key: 'minValue', - description: ` - If 'auto', will pick the lowest value - in the provided data set. Should be overriden - if your data set does not contain desired - lower bound value. - `, - defaultValue: defaults.minValue, - type: `number | 'auto'`, - group: 'Base', - control: { - type: 'switchableRange', - disabledValue: 'auto', - defaultValue: 0, - min: -100, - max: 100, - }, - }, - { - key: 'maxValue', - flavors: allFlavors, - description: ` - If 'auto', will pick the highest value - in the provided data set. Should be overriden - if your data set does not contain desired - higher bound value. - `, - defaultValue: defaults.maxValue, - type: `number | 'auto'`, - group: 'Base', - control: { - type: 'switchableRange', - disabledValue: 'auto', - defaultValue: 100, - min: -100, - max: 100, - }, - }, { key: 'valueFormat', group: 'Base', diff --git a/website/src/pages/heatmap/canvas.tsx b/website/src/pages/heatmap/canvas.tsx index 6314896a41..7833b21523 100644 --- a/website/src/pages/heatmap/canvas.tsx +++ b/website/src/pages/heatmap/canvas.tsx @@ -23,8 +23,6 @@ const initialProperties: CanvasUnmappedProps = { left: 80, }, - minValue: defaults.minValue, - maxValue: defaults.maxValue, valueFormat: { format: '>-.2s', enabled: true }, pixelRatio: diff --git a/website/src/pages/heatmap/index.tsx b/website/src/pages/heatmap/index.tsx index e2781a981d..4a66ddd895 100644 --- a/website/src/pages/heatmap/index.tsx +++ b/website/src/pages/heatmap/index.tsx @@ -23,8 +23,6 @@ const initialProperties: SvgUnmappedProps = { left: 90, }, - minValue: defaults.minValue, - maxValue: defaults.maxValue, valueFormat: { format: '>-.2s', enabled: true }, forceSquare: defaults.forceSquare,