diff --git a/v1/Basics/wpf.html b/v1/Basics/wpf.html index ef3caa2..64dfab2 100644 --- a/v1/Basics/wpf.html +++ b/v1/Basics/wpf.html @@ -59,7 +59,7 @@

Components

You can set a Fill and Stroke only for a specific series, if you don't then the library will decide a color according to your theme

-
<lvc:LineSeries Stroke="Red" Fill="Blue /">
+
<lvc:LineSeries Stroke="Red" Fill="Blue" />
mySeries.Stroke = System.Windows.Media.Brushes.Red;
 mySeries.Fill = System.Windows.Media.Brushes.Blue;
@@ -70,7 +70,7 @@

Components

will be binded to the drawn shape, for example:

-
<lvc:LineSeries Visibility="Hidden" StrokeDashArray="2" Panel.Zindex="3" / >
+
<lvc:LineSeries Visibility="Hidden" StrokeDashArray="2" Panel.Zindex="3" />

Or from code behind @@ -84,7 +84,7 @@

Custom Components

If necessary you can also define your own tooltips or legends controls, - here is an article about it + here is an article about it

Legends