This question is locked. New answers and comments are not allowed.
I want to set the line series stroke in code behind. The first parameter in SetValue () should be DependencyProperty, however I can't figure out how to do it. Here is my current code :
var provider = intervalChart.SeriesProvider;
foreach
(var descriptor
in
provider.SeriesDescriptors)
{
descriptor.Style.SetValue(
"Stoke"
, Windows.UI.Colors.Aqua);
}