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
138
Contour lines values
posted

Hi

I have an application using ScatterDataSeries and TriangulationData to generate heatmaps and contour lines. I used the HeatMapChart project of [Infragistics] Martin Trela from this post http://ko.infragistics.com/community/forums/t/81451.aspx as a reference.

Could you please expand the example adding the values on the contour lines? I tried to obtain something like the "Custom series" example for xamDataChart from the Infragistics WPF sample browser but I was not able to complete the task.

Thanks

Parents
  • 34510
    Suggested Answer
    Offline posted

    Hi LucaMinerva,

    The sample provided by Martin is using a ContourLineSeries object that originally comes from the XamGeographicMap assembly.  The reason it works in the XamDataChart is because the two controls share a lot of the same basic series logic.  This, however, is different than the "Custom Series" contour series that we have here.

    The ContourLineSeries used in the sample does not support markers so you can't show the values in a similar way that you see them in the Custom Series documentation.  In order to have markers like the Custom Series you will need to add a ScatterSeries that has the location of where you want the markers to show up.  Then you could provide a custom MarkerTemplate that you can use to show the value of that point.

Reply Children