This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi.I have a question to ask.It's like this:
public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); }
|
|
|
Hello Thanks for the feedback and the code examples. To resolve this, You can start by attaching a collection changed event handler to the Chart.Series collection in the TrackingElement_Loaded method like this:
Then in this collection changed event handler, simply reset the _lineSeries cache like this:
After I did this, I noticed another issue related to having alternate axis. To resolve this other issue, I went to the UpdateElements method and replaced this line:
With this code:
And of course moved this code down a few lines so that it can use the physicalPoint variable. I have updated this code in the TrackingElement class provided by the SampleExplorer. So if you're not sure about doing this yourself, you can download it through the next nightly builds. Jason Fauchelle |
|