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
185
Show hidden data in UltraChart tool tip
posted

Is there a way to show hidden column data in the tool tip on an ultrchart line chart?  I have set the tool tip style to custom.  Code snippet below:

 

 

 

 

 

 

 

 

 

 

 

 

da = New SqlDataAdapter

da.SelectCommand = cmd

dsPPChartData = New DataSet

da.Fill(dsPPChartData, "PPChartData")

cn.Close()

If dsPPChartData.Tables("PPChartData").Rows.Count > 0 Then

ppChart.DataSource = dsPPChartData

ppChart.Data.IncludeColumn("Track", False)

ppChart.Data.IncludeColumn("Race", False)

ppChart.Data.IncludeColumn("Distance", False)

ppChart.Data.IncludeColumn("Surface", False)

ppChart.Data.IncludeColumn("Class", False)

ppChart.Visible = True

Else

ppChart.Visible = False

End If

I would like to display the columns that are not included on the chart in the custom tool tip.

Thank you.