You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/_index.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ layout: single
14
14
15
15
**ScottPlot is a free and open-source plotting library for .NET** that makes it easy to interactively display large datasets. Line plots, bar charts, pie graphs, scatter plots, and more can be created with just a few lines of code.
The [**ScottPlot Cookbook**](cookbook/5.0/) demonstrates how to create line plots, bar charts, pie graphs, scatter plots, and more with just a few lines of code.
38
+
The [**ScottPlot Cookbook**](cookbook/5/) demonstrates how to create line plots, bar charts, pie graphs, scatter plots, and more with just a few lines of code.
The [**ScottPlot Demo**](demo/5.0/) is a click-to-run application that provides mouse-interactive versions of every cookbook recipe and demonstrates how to perform advanced interactive customizations.
46
+
The [**ScottPlot Demo**](demo/5/) is a click-to-run application that provides mouse-interactive versions of every cookbook recipe and demonstrates how to perform advanced interactive customizations.
Copy file name to clipboardExpand all lines: content/demo/4.1.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ date: 2024-06-11
13
13
<hr/>
14
14
<ul class="mb-0">
15
15
<li>This demo below is specific to <strong>ScottPlot version 4.1</strong></li>
16
-
<li>Review the <strong><a href='/demo/5.0/'>ScottPlot 5 Demo</a></strong> and <strong><a href='/cookbook/5.0/'>ScottPlot 5 Cookbook</a></strong> for modern examples.</li>
16
+
<li>Review the <strong><a href='/demo/5/'>ScottPlot 5 Demo</a></strong> and <strong><a href='/cookbook/5/'>ScottPlot 5 Cookbook</a></strong> for modern examples.</li>
17
17
<li>See <a href='/faq/version-5.0/'><strong>What's New in ScottPlot 5.0</strong></a> for more information and migration tips.</li>
Copy file name to clipboardExpand all lines: content/demo/5.0.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ date: 2024-06-11
6
6
7
7
# ScottPlot 5.0 Demo
8
8
9
-
**The ScottPlot 5.0 Demo is a click-to-run application that demonstrates capabilities of ScottPlot.** The demo application displays all [ScottPlot 5.0 Cookbook](/cookbook/5.0/) recipes and demonstrates advanced user control features which are useful in GUI environments.
9
+
**The ScottPlot 5.0 Demo is a click-to-run application that demonstrates capabilities of ScottPlot.** The demo application displays all [ScottPlot 5.0 Cookbook](/cookbook/5/) recipes and demonstrates advanced user control features which are useful in GUI environments.
10
10
11
11
* Each demo is provided with a [link to its source code](https://github.com/ScottPlot/ScottPlot/tree/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos)
12
12
@@ -24,11 +24,11 @@ date: 2024-06-11
24
24
</a>
25
25
</div>
26
26
27
-

27
+

28
28
29
29
## Notable Demos
30
30
31
-
These are some of the most useful demonstrations included in the [ScottPlot Demo application](/demo/5.0/):
31
+
These are some of the most useful demonstrations included in the [ScottPlot Demo application](/demo/5/):
32
32
33
33
### Show Value Under Mouse
34
34
@@ -37,7 +37,7 @@ These are some of the most useful demonstrations included in the [ScottPlot Demo
**The select points demo** shows how to use the control's `MouseDown`, `MouseUp`, and `MouseMove` events to track where the mouse was pressed, dragged, and released to determine which data points are within the mouse rectangle. It then places `Marker` objects over the selected data points. Notice that none of these plot types contain mouse-specific logic, but users can add their own without too much complexity.
If no characters render at all, it may be because the default font was incorrectly detected. Users may correct this issue by [specifying the name of an installed font](https://scottplot.net/cookbook/5.0/Styling/AxisCustom/) or by [using a font contained in a .ttf file](https://scottplot.net/cookbook/5.0/Miscellaneous/CustomFontFiles/), as demonstrated in the ScottPlot 5 Cookbook.
34
+
If no characters render at all, it may be because the default font was incorrectly detected. Users may correct this issue by [specifying the name of an installed font](https://scottplot.net/cookbook/5/Styling/AxisCustom/) or by [using a font contained in a .ttf file](https://scottplot.net/cookbook/5/Miscellaneous/CustomFontFiles/), as demonstrated in the ScottPlot 5 Cookbook.
Copy file name to clipboardExpand all lines: content/faq/mouse-position.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,6 @@ date: 2023-12-13
6
6
7
7
# Determining the Mouse Position
8
8
9
-
See the various mouse tracking and other interactive examples on the [**ScottPlot Demo**](/demo/5.0/#custom-context-menu) page.
9
+
See the various mouse tracking and other interactive examples on the [**ScottPlot Demo**](/demo/5/#custom-context-menu) page.
10
10
11
11
**WPF users** should note that mouse position must be multiplied by a scale factor if the system's DPI scaling is enabled. See the [DPI Scaling FAQ Page](/faq/dpi-scaling) for more information.
Copy file name to clipboardExpand all lines: content/faq/multiplot.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ Multi-plot figures can be achieved one of two ways:
10
10
11
11
### Use the Multiplot System
12
12
13
-
* Place a single plot control and interact with its `Multiplot` property to add subplots and setup shared axes and layouts as documented in the [**ScottPlot Demo**](/demo/5.0/) and [**Shared Axes**](../shared-axes/) pages.
13
+
* Place a single plot control and interact with its `Multiplot` property to add subplots and setup shared axes and layouts as documented in the [**ScottPlot Demo**](/demo/5/) and [**Shared Axes**](../shared-axes/) pages.
14
14
15
15
### Place Multiple Plot Controls
16
16
17
-
* Place multiple plot controls and interact the `Plot` property of each and use the `Layout` class to achieve shared axis limits as documented in the [**Shared Axis Demo**](/demo/5.0/#shared-axes) page.
17
+
* Place multiple plot controls and interact the `Plot` property of each and use the `Layout` class to achieve shared axis limits as documented in the [**Shared Axis Demo**](/demo/5/#shared-axes) page.
0 commit comments