cancel
Showing results for 
Search instead for 
Did you mean: 

How to disable the toolTip in sap.viz.ui5.controls.VizFrame chart in sapui5?

Ranjith
Participant
0 Kudos

I want to do the chart is not clickable.So i want to disable the tooltip and the bluecolor border in the vizframe chart.i tried with

tooltip:{

visible:false.

}

But i can't able to disable the tooltip. i attached my chart picture also.

 var stackedColumnVizChart = new  sap.viz.ui5.controls.VizFrame("chartStackedColumn", {  
			  //width : "800px",  
			  //height : "500px",  
			 legendVisible : false,			
              dataset : oDataset,
              
          });
			stackedColumnVizChart.setVizProperties({
				plotArea:{
		colorPalette : d3.scale.category20().range(),
			dataLabel: {
		                    visible: false
		                   }
				},
			title:{
				visible : "false",
			},
			valueAxis: {
                           title: {
                               visible: false
                                 }
                               },
                 categoryAxis: {
                     title: {
                         visible: false
                     }
                 }
                toolTip : {
                	visible:false
                },
});

community.png

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member196805
Contributor
0 Kudos

It should be "tooltip" instead of "toolTip"