Hi. My users need to be able to add series at runtime. I therefore need to maintain a series collection. I have seen a sample on this site at the below address. Is this still the only way to achieve this? If so is it proven to work? My series collection is initially empty (but not null) and this seems to confuse the SeriesBindingInfo class because the x/y axes are null.
http://community.infragistics.com/forums/p/50183/264009.aspx#264009
Many thanks
HtD
Actually my issue with the sample was a messed up data template (and a red herring in the trace window) which i have now fixed.
But I would still like to know if there is a better was of doing this. It is a requirement that, based on the type of series the my users select (e.g. simple series, OHLC, etc.), I would need to select from a variety of series templates.
Hello again. I solved my second problem by embedding a set of DataTemplates in SeriesBindingInfo.Resources (keyed by type) and amending the SeriesBindingInfo class appropriately (i.e. using FindResource).