Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1815
Ultrachart ToolTips
posted

Can you please help me with why

.ItemFormatString = "<ITEM_LABEL:dd-MMM-yyyy>"

  as in

With axisX
    .DataType = AxisDataType.Time
    .TickmarkStyle = AxisTickStyle.DataInterval
   .Extent = 65
   With .Labels
.ItemFormat = AxisItemLabelFormat.ItemLabel
      .ItemFormat = AxisItemLabelFormat.Custom
     .ItemFormatString = "<ITEM_LABEL:dd-MMM-yyyy>"
      .Layout.Padding = 2
      .SeriesLabels.Visible = False
      .Orientation = TextOrientation.VerticalLeftFacing
      .Visible = True
      End With
End With
works fine to format the dates
BUT
   .Tooltips.FormatString = "<SERIES_LABEL> <DATA_VALUE> on <ITEM_LABEL:dd-MMM-yyyy HH:mm>"

won't format the tooltip as instructed?

Thank you