Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions v1/Basics/wpf.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h4>Components</h4>
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
</p>

<pre class="prettyprint">&lt;lvc:LineSeries Stroke="Red" Fill="Blue /"&gt;</pre>
<pre class="prettyprint">&lt;lvc:LineSeries Stroke="Red" Fill="Blue" /&gt;</pre>

<pre class="prettyprint">mySeries.Stroke = System.Windows.Media.Brushes.Red;
mySeries.Fill = System.Windows.Media.Brushes.Blue;</pre>
Expand All @@ -70,7 +70,7 @@ <h4>Components</h4>
will be binded to the drawn shape, for example:
</p>

<pre class="prettyprint">&lt;lvc:LineSeries Visibility="Hidden" StrokeDashArray="2" Panel.Zindex="3" / &gt;</pre>
<pre class="prettyprint">&lt;lvc:LineSeries Visibility="Hidden" StrokeDashArray="2" Panel.Zindex="3" /&gt;</pre>

<p>
Or from code behind
Expand All @@ -84,7 +84,7 @@ <h4>Custom Components</h4>

<p>
If necessary you can also define your own tooltips or legends controls,
<a href="/App/examples/v1/wpf/Customizing Tooltips">here</a> is an article about it
<a href="/App/examples/v1/wpf/Tooltips and Legends">here</a> is an article about it
</p>

<h4>Legends</h4>
Expand Down