Is there a way to turn off the highlight tool tip for the Histogram line only? I still want the tool tips and highlighting for the columns.
-Ken
Hello,
In order to remove labels and HitTest from line part of histogram chart you should handle OnDataItemOver event of UltraCahrt and add there the following code snippet:
if (e.Primitive is DataPoint)
{
((DataPoint)e.Primitive).Caps = PCaps.None;
}
Let me know if you have any further questions.
That worked...thanks!
BTW: Are there any samples that show how to draw extra lines onto column graphs or histograms? I need to draw some marker lines to represent AUR and other values.
thanks