Reputation: 32
I have a webchartcontrol in my asp,net webforms, I have been trying to use the tooltip to show data when hovering over a point but the tooltip is never activated. I've tried different things I've found online. Below is the code I've been trying. Can someone show me what i've been doing wrong?
ActiveChart.CrosshairEnabled = DevExpress.Utils.DefaultBoolean.False;
ActiveChart.ToolTipEnabled = DevExpress.Utils.DefaultBoolean.True;
ActiveChart.Series[0].ToolTipEnabled = DevExpress.Utils.DefaultBoolean.True;
ActiveChart.Series[0].ToolTipPointPattern = "{HINT} Test";
ActiveChart.Series[0].LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
Upvotes: 0
Views: 94