@@ -146,10 +146,10 @@ const ResolutionCustomForm = withStyles({
146146 * @param {OnHeatMapOptionChange } props.onHeatmapOptionChange A callback function invoked when any combination of
147147 * resolutionValue, selectedPropertyId, and showHeatMap are changed.
148148 *
149- * @memberof Autodesk.DataVisualization.UI.SurfaceShader
150- * @alias Autodesk.DataVisualization.UI.SurfaceShader.ShaderOptionsMenu
149+ * @memberof Autodesk.DataVisualization.UI.HeatmapOptions
150+ * @alias Autodesk.DataVisualization.UI.HeatmapOptions.HeatmapSelectionMenu
151151 */
152- function ShaderOptionsMenu ( props ) {
152+ function HeatmapSelectionMenu ( props ) {
153153 const resolutionValue = props . resolutionValue ;
154154 const selectedPropertyId = props . selectedPropertyId ;
155155 const showHeatMap = props . showHeatMap ;
@@ -287,10 +287,10 @@ function ShaderOptionsMenu(props) {
287287 * @param {GetPropertyRanges } props.getPropertyRanges The function to get the selected property's range and dataUnit
288288 * @param {number } props.totalMarkers The total number of slider marks to display on the slider.
289289 *
290- * @memberof Autodesk.DataVisualization.UI.SurfaceShader
291- * @alias Autodesk.DataVisualization.UI.SurfaceShader.ShaderSlider
290+ * @memberof Autodesk.DataVisualization.UI.HeatmapOptions
291+ * @alias Autodesk.DataVisualization.UI.HeatmapOptions.GradientBar
292292 */
293- function ShaderSlider ( props ) {
293+ function GradientBar ( props ) {
294294 const [ sliderMarks , setSliderMarks ] = useState ( [
295295 { value : 20 , label : "1" } ,
296296 { value : 40 , label : "2" } ,
@@ -353,7 +353,7 @@ function ShaderSlider(props) {
353353}
354354
355355/**
356- * The surface shader component with a linear gradient and options menu.
356+ * The HeatmapOptions component with a linear gradient and an options menu.
357357 * @component
358358 *
359359 * @param props
@@ -369,17 +369,17 @@ function ShaderSlider(props) {
369369 * @param {Map.<string, DeviceProperty> } props.deviceModelProperties Map of all the properties across all devicesModels in a {@link DataStore} object.
370370 *
371371 * @memberof Autodesk.DataVisualization.UI
372- * @alias Autodesk.DataVisualization.UI.SurfaceShader
372+ * @alias Autodesk.DataVisualization.UI.HeatmapOptions
373373 */
374374function HeatmapOptions ( props ) {
375375 const classes = useStyles ( ) ;
376376
377377 return (
378378 < div id = "surfaceShader_Container" className = { classes . root } >
379- < ShaderSlider { ...props } />
380- < ShaderOptionsMenu { ...props } />
379+ < GradientBar { ...props } />
380+ < HeatmapSelectionMenu { ...props } />
381381 </ div >
382382 ) ;
383383}
384384
385- export default HeatmapOptions ;
385+ export default HeatmapOptions ;
0 commit comments