Default Title content is set by the Hotspot tool Style property. When MapAction is set to 'Mark' the Title is displayed according to Style when the mouse is passed over a Series point. For new Chart content sensitive data. The content may be overridden in the Hotspot event (see SeriesHotspotEventHandler arguments) and may be set alongside other MapAction actions.
public String Title {get; set;}

Example

private void hotspot1_GetHTMLMap(Steema.TeeChart.Tools.Hotspot sender, Steema.TeeChart.Tools.SeriesHotspotEventArgs e) { //Title may be set and modified even when an HREF action is set. e.PointPolygon.Title="My Point Index: "+e.PointPolygon.ValueIndex.ToString(); e.PointPolygon.HREF="http://www.steema.com/cgi-bin/examplescript?var1="+e.PointPolygon.ValueIndex.ToString(); //e.PointPolygon.Attributes="onClick=\"Javascript:ActivateFunc("+e.PointPolygon.ValueIndex.ToString()+")\""; }

See Also

PointPolygon Class | PointPolygon Members | Steema.TeeChart.Styles Namespace