or
<pivot:PropertyAggregateDescription CustomName="Net Margin" PropertyName="NetMargin" StringFormat="#,0.00," /> <pivot:PropertyAggregateDescription CustomName="%" PropertyName="NetMargin" StringFormat="p"> <pivot:PropertyAggregateDescription.TotalFormat> <pivot:PercentDifferenceFrom Axis="Columns" GroupName="Net Price" /> </pivot:PropertyAggregateDescription.TotalFormat> </pivot:PropertyAggregateDescription>
1. void OnFirstButtonClick(){ Chart.Series.Clear(); var series = new LineSeries() {RenderMode = SeriesRenderMode.Light}; Chart.Series.Add(series); } // I can see added series, it's OK2. void OnSecondButtonClick(){ Chart.Series.Clear(); var series = new LineSeries(); Chart.Series.Add(series); } // I see new series and series from the first step. Why?// If the first series are rendered with Full RenderMode, I see only the second.