开发者

Polyline disappears while setting PolylineStyle property of a line series in a Silverlight chart

开发者 https://www.devze.com 2023-01-19 05:36 出处:网络
I have a silverlight chart which has multiple line series that was dynamically created. When I assign a PolylineStyle of the dynamically created LineSeries the lines in chart disappear. Only markers

I have a silverlight chart which has multiple line series that was dynamically created.

When I assign a PolylineStyle of the dynamically created LineSeries the lines in chart disappear. Only markers are shown. It is odd because when I assign the same style from xaml开发者_Python百科 everything works as it should.

I'm using the following code to assign the style:

agentSeries.PolylineStyle = (Style)AgentsChart.Resources["AgentResultChartLineStyle"];

this style contains only one setter - StrokeThickness = 2.

Am I doing something wrong here? Why do the lines disappear when I set the PolylineStyle from code on the dynamically added LineSeries?


When setting StrokeThickness property from code, you also need to set Stroke property for lines to be visible.

0

精彩评论

暂无评论...
验证码 换一张
取 消