I have tried following the examples but without success. My JQChart is declared in the usercontrol .ascx file like this:
Code:
<trirand:JQChart runat="server" [h]ID="grfFeedbacksSums"[/h] ClassName="ca" Width="722"
Height="500" Type="Column" MarginTop="0" MarginLeft="20" MarginRight="0" PlotBorderWidth="0" >
<Title Floating="True" VerticalAlign="Top" Align="Center" Text="" />
<Legend Enabled="False" />
<ToolTips Enabled="False"/>
<XAxis>
</XAxis>
<YAxis>
<trirand:ChartYAxisSettings Min="0">
</trirand:ChartYAxisSettings>
</YAxis>
</trirand:JQChart>
I couldn't find any place I could add the HighLighting attribute to disable it.
I also tried making changes in the .cs file:
Code:[h]grfFeedbacksSums[/h].ToolTips.HighLighting(false);
or
Code:[h]grfFeedbacksSums[/h].ToolTips.HighLighting=false;
Is there a way to disable highlighting with the configuration I'm using?