I'm actually trying to develop a simple line charting app, ie, connect a series of points. The chart has to have zooming and panning capabilities.
I was wondering if Silverlight (and so WPF) would automatically optimize the rendering of the polyline according to the currently visible segments.
That means I would initially load all the points to the polyline and then use a ScaleTransform and TranslateTransform in order to display only a specific range of the data.
That would avoid having to modify the polyline's Points parameter everytime the user changes the desired data range.
That's why I realized the 1000 points limit, I was just experimenting with different quantities of points to see what impact it has on the Silverlight rendering.
Any idea if that's a good approach?