Suppose I have an ObservableCollection<DataPoint> full of DataPoints defined as
public class DataPoint()
{
public DateTime Timestamp { get; set; }
public int X { get; set; }
public int Y { get; set; }
public int Z {get; set; }
public DataPoint()
{
Timestamp = new DateTime();
X = new int();
}
I am plotting X, Y, and Z individually on the same chart by dynamically changing the chart series's YBindingPath. XBindingPath is always Timestamp. I want export all three series X, Y, and Z as individual images, however, I'd like to do this without rendering each series. I only need to look at X. Is this possible?