Skip to content

Commit 2cc5c07

Browse files
committed
fix demo images
1 parent cec8321 commit 2cc5c07

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The [**ScottPlot Cookbook**](cookbook/5/) demonstrates how to create line plots,
4646
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.
4747

4848
<a href='demo/5/'>
49-
<img src='/images/demo/5/demo.png' class="d-block mx-auto my-5" />
49+
<img src='/images/demo/5.0/demo.png' class="d-block mx-auto my-5" />
5050
</a>
5151

5252
## Plot in the Cloud

content/demo/5.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ date: 2024-06-11
2424
</a>
2525
</div>
2626

27-
![](/images/demo/5/demo.png)
27+
![](/images/demo/5.0/demo.png)
2828

2929
## Notable Demos
3030

@@ -37,7 +37,7 @@ These are some of the most useful demonstrations included in the [ScottPlot Demo
3737
* Source code: [ShowValueOnHover.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/ShowValueOnHover.cs)
3838
* Download: <a href='#download'>ScottPlot 5 demo</a>
3939

40-
![](/images/demo/5/show-point.gif)
40+
![](/images/demo/5.0/show-point.gif)
4141

4242

4343
### Draggable Axis Lines
@@ -47,7 +47,7 @@ These are some of the most useful demonstrations included in the [ScottPlot Demo
4747
* Source code: [DraggableAxisLines.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/DraggableAxisLines.cs)
4848
* Download: <a href='#download'>ScottPlot 5 demo</a>
4949

50-
![](/images/demo/5/drag.gif)
50+
![](/images/demo/5.0/drag.gif)
5151

5252

5353
### Draggable Axis Spans
@@ -57,7 +57,7 @@ These are some of the most useful demonstrations included in the [ScottPlot Demo
5757
* Source code: [DraggableAxisSpans.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/DraggableAxisSpans.cs)
5858
* Download: <a href='#download'>ScottPlot 5 demo</a>
5959

60-
![](/images/demo/5/draggable-span.gif)
60+
![](/images/demo/5.0/draggable-span.gif)
6161

6262

6363
### Draggable Data Points
@@ -67,15 +67,15 @@ These are some of the most useful demonstrations included in the [ScottPlot Demo
6767
* Source code: [DraggablePoints.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/DraggablePoints.cs)
6868
* Download: <a href='#download'>ScottPlot 5 demo</a>
6969

70-
![](/images/demo/5/draggable-points.gif)
70+
![](/images/demo/5.0/draggable-points.gif)
7171

7272
### Selectable Data Points
7373
**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.
7474

7575
* Source code: [SelectPoints.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/SelectPoints.cs)
7676
* Download: <a href='#download'>ScottPlot 5 demo</a>
7777

78-
![](/images/demo/5/select-points.gif)
78+
![](/images/demo/5.0/select-points.gif)
7979

8080
### Multiplot Layouts
8181

@@ -84,7 +84,7 @@ The plot control's `Multiplot` system may be used to add subplots and configure
8484
* Source code: [MultiplotAdvancedLayout.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/MultiplotAdvancedLayout.cs)
8585
* Download: <a href='#download'>ScottPlot 5 demo</a>
8686

87-
![](/images/demo/5/multiplot-advanced.png)
87+
![](/images/demo/5.0/multiplot-advanced.png)
8888

8989
### Multiplot with Shared Axes
9090

@@ -93,7 +93,7 @@ The plot control's `Multiplot` system may be used to add subplots and configure
9393
* Source code: [MultiplotSharedAxis.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/MultiplotSharedAxis.cs)
9494
* Download: <a href='#download'>ScottPlot 5 demo</a>
9595

96-
![](/images/demo/5/multiplot-shared.gif)
96+
![](/images/demo/5.0/multiplot-shared.gif)
9797

9898
### Synchronizing Axes Across Multiple Plot Controls
9999

@@ -104,7 +104,7 @@ The shared axes demo uses `Plot.Axes.Link()` to link axis limits between **two s
104104
* Source code: [SharedAxes.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/SharedAxes.cs)
105105
* Download: <a href='#download'>ScottPlot 5 demo</a>
106106

107-
![](/images/demo/5/linked-axes.gif)
107+
![](/images/demo/5.0/linked-axes.gif)
108108

109109
### Shared Axes
110110

@@ -123,7 +123,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
123123
* Source code: [MultiplotCollapsed.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/MultiplotCollapsed.cs)
124124
* Download: <a href='#download'>ScottPlot 5 demo</a>
125125

126-
![](/images/demo/5/multiplot-resize.gif)
126+
![](/images/demo/5.0/multiplot-resize.gif)
127127

128128
### Axis Rules
129129

@@ -132,7 +132,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
132132
* Source code: [AxisRules.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/AxisRules.cs)
133133
* Download: <a href='#download'>ScottPlot 5 demo</a>
134134

135-
![](/images/demo/5/axis-rules.png)
135+
![](/images/demo/5.0/axis-rules.png)
136136

137137
### Continuously Autoscale
138138

@@ -161,7 +161,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
161161
* Source code: [CustomMenu.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/CustomMenu.cs)
162162
* Download: <a href='#download'>ScottPlot 5 demo</a>
163163

164-
![](/images/demo/5/menu.png)
164+
![](/images/demo/5.0/menu.png)
165165

166166

167167
### Custom Mouse Actions
@@ -171,7 +171,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
171171
* Source code: [CustomMouseActions.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/CustomMouseActions.cs)
172172
* Download: <a href='#download'>ScottPlot 5 demo</a>
173173

174-
![](/images/demo/5/custom-mouse.png)
174+
![](/images/demo/5.0/custom-mouse.png)
175175

176176
### Multi-Axis
177177

@@ -180,7 +180,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
180180
* Source code: [MultiAxis.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/MultiAxis.cs)
181181
* Download: <a href='#download'>ScottPlot 5 demo</a>
182182

183-
![](/images/demo/5/multi-axis.png)
183+
![](/images/demo/5.0/multi-axis.png)
184184

185185
### Plot Streaming Data
186186

@@ -189,7 +189,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
189189
* Source code: [DataStreamer.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/DataStreamer.cs)
190190
* Download: <a href='#download'>ScottPlot 5 demo</a>
191191

192-
![](/images/demo/5/data-streamer.gif)
192+
![](/images/demo/5.0/data-streamer.gif)
193193

194194
### Plot Growing Data
195195

@@ -198,7 +198,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
198198
* Source code: [DataLogger.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/DataLogger.cs)
199199
* Download: <a href='#download'>ScottPlot 5 demo</a>
200200

201-
![](/images/demo/5/data-logger.gif)
201+
![](/images/demo/5.0/data-logger.gif)
202202

203203
### Plot Live Financial Data
204204

@@ -207,7 +207,7 @@ This window demonstrates how subplots can be given zero padding to achieve a col
207207
* Source code: [LiveFinance.cs](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot5/ScottPlot5%20Demos/ScottPlot5%20WinForms%20Demo/Demos/LiveFinance.cs)
208208
* Download: <a href='#download'>ScottPlot 5 demo</a>
209209

210-
![](/images/demo/5/live-finance.gif)
210+
![](/images/demo/5.0/live-finance.gif)
211211

212212
## All WinForms Demo Windows
213213

content/faq/shared-axes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Multiple plots can be configured so changes the axis limits of one plot are appl
1212

1313
* **Using `Multiplot` in a Single Plot Control:** When the `Multiplot` class is used to place multiple plots, they may be easily synchronized using the `ShareX()` and `ShareY()` helper methods as described on the [**Multiplot FAQ Page**](../multiplot)
1414

15-
![](/images/demo/5/linked-axes.gif)
15+
![](/images/demo/5.0/linked-axes.gif)
1616

1717
## Shared Layout
1818

0 commit comments

Comments
 (0)