forked from ScottPlot/ScottPlot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extends ScottPlot#2257
- Loading branch information
Showing
14 changed files
with
3,369 additions
and
513 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
obj | ||
api/*.yml | ||
api/.manifest | ||
############### | ||
# folder # | ||
############### | ||
/**/DROP/ | ||
/**/TEMP/ | ||
/**/packages/ | ||
/**/bin/ | ||
/**/obj/ | ||
_site | ||
_api/ |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +0,0 @@ | ||
# ScottPlot 4.1.16 API | ||
|
||
This documentation is specific to ScottPlot version `4.1.16`. | ||
|
||
Information about other versions and additional documentation can be found at **http://swharden.com/scottplot** | ||
|
||
See the [**ScottPlot Cookbook**](https://swharden.com/scottplot/cookbook) and [**ScottPlot FAQ**](https://swharden.com/scottplot/faq) for additional documentation. | ||
|
||
### The Plot Module | ||
|
||
* Plots are managed by interacting with the [**`ScottPlot.Plot`**](xref:ScottPlot.Plot) class | ||
|
||
### Plottables | ||
|
||
* Plot types are defined in the [**`ScottPlot.Plottable`**](xref:ScottPlot.Plottable) namespace | ||
|
||
### User Controls | ||
|
||
* [**`ScottPlot.FormsPlot`**](xref:ScottPlot.FormsPlot) - Windows Forms | ||
* [**`ScottPlot.WpfPlot`**](xref:ScottPlot.WpfPlot) - Windows Presentation Format | ||
* [**`ScottPlot.AvaPlot`**](xref:ScottPlot.Avalonia.AvaPlot) - Avalonia | ||
|
||
User controls have common public fields/methods: | ||
* [`Plot`](xref:ScottPlot.Plot) - interact with this to manage data | ||
* [`Configuration`](xref:ScottPlot.Control.Configuration) - interact with this to manage interactive behavior | ||
* `Render()` - redraw the plot on the screen | ||
* `RenderRequest()` - non-blocking request to redraw the plot | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,68 @@ | ||
{ | ||
"metadata": [ | ||
"metadata": [ | ||
{ | ||
"src": [ | ||
{ | ||
"src": [ | ||
{ | ||
"files": [ | ||
"ScottPlot/ScottPlot.csproj", | ||
"ScottPlot.WinForms/ScottPlot.WinForms.csproj", | ||
"ScottPlot.WPF/ScottPlot.WPF.csproj", | ||
"ScottPlot.Avalonia/ScottPlot.Avalonia.csproj", | ||
"ScottPlot.Eto/ScottPlot.Eto.csproj" | ||
], | ||
"exclude": [ | ||
"**/bin/**", | ||
"**/obj/**" | ||
], | ||
"src": "../../src/ScottPlot4" | ||
} | ||
], | ||
"dest": "_api", | ||
"disableGitFeatures": true, | ||
"disableDefaultFilter": false, | ||
"_disableAffix": true | ||
"src": "../../src/ScottPlot4", | ||
"files": [ | ||
"ScottPlot/*.csproj", | ||
"ScottPlot.WinForms/*.csproj", | ||
"ScottPlot.WPF/*.csproj", | ||
"ScottPlot.Avalonia/*.csproj", | ||
"ScottPlot.Eto/*.csproj", | ||
] | ||
} | ||
], | ||
"dest": "api", | ||
"disableGitFeatures": false, | ||
"disableDefaultFilter": false | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ | ||
"api/**.yml", | ||
"api/index.md" | ||
] | ||
}, | ||
{ | ||
"files": [ | ||
"toc.yml", | ||
"*.md" | ||
] | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ | ||
"_api/**.yml", | ||
"api/index.md", | ||
"toc.yml", | ||
"index.md" | ||
] | ||
} | ||
], | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"icon.png" | ||
] | ||
} | ||
], | ||
"overwrite": [ | ||
{ | ||
"files": [ | ||
"apidoc/**.md" | ||
], | ||
"exclude": [ | ||
"obj/**", | ||
"_site/**" | ||
] | ||
} | ||
], | ||
"dest": "_site", | ||
"globalMetadata": { | ||
"_appTitle": "ScottPlot 4.1.16 API", | ||
"repo": "https://github.com/ScottPlot/ScottPlot", | ||
"branch": "master", | ||
"apiSpecFolder": "dev/docfx", | ||
"_appLogoPath": "icon.png", | ||
"_appFaviconPath": "icon.png" | ||
}, | ||
"template": [ | ||
"default", | ||
"template-material" | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"images/**" | ||
] | ||
} | ||
], | ||
"overwrite": [ | ||
{ | ||
"files": [ | ||
"apidoc/**.md" | ||
], | ||
"postProcessors": [], | ||
"markdownEngineName": "markdig", | ||
"noLangKeyword": false, | ||
"keepFileLink": false, | ||
"cleanupCacheHistory": false, | ||
"disableGitFeatures": true | ||
} | ||
"exclude": [ | ||
"obj/**", | ||
"_site/**" | ||
] | ||
} | ||
], | ||
"dest": "_site", | ||
"globalMetadataFiles": [], | ||
"fileMetadataFiles": [], | ||
"template": [ | ||
"default", | ||
"templates/sp4" | ||
], | ||
"postProcessors": [], | ||
"markdownEngineName": "markdig", | ||
"noLangKeyword": false, | ||
"keepFileLink": false, | ||
"cleanupCacheHistory": false, | ||
"disableGitFeatures": false | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,9 @@ | ||
# ScottPlot 4.1.16 API | ||
|
||
This documentation is specific to ScottPlot version `4.1.16`. | ||
|
||
Information about other versions and additional documentation can be found at **http://swharden.com/scottplot** | ||
|
||
See the [**ScottPlot Cookbook**](https://swharden.com/scottplot/cookbook) and [**ScottPlot FAQ**](https://swharden.com/scottplot/faq) for additional documentation. | ||
|
||
### The Plot Module | ||
|
||
* Plots are managed by interacting with the [**`ScottPlot.Plot`**](xref:ScottPlot.Plot) class | ||
|
||
### Plottables | ||
|
||
* Plot types are defined in the [**`ScottPlot.Plottable`**](xref:ScottPlot.Plottable) namespace | ||
|
||
### User Controls | ||
|
||
* [**`ScottPlot.FormsPlot`**](xref:ScottPlot.FormsPlot) - Windows Forms | ||
* [**`ScottPlot.WpfPlot`**](xref:ScottPlot.WpfPlot) - Windows Presentation Format | ||
* [**`ScottPlot.AvaPlot`**](xref:ScottPlot.Avalonia.AvaPlot) - Avalonia | ||
|
||
User controls have common public fields/methods: | ||
* [`Plot`](xref:ScottPlot.Plot) - interact with this to manage data | ||
* [`Configuration`](xref:ScottPlot.Control.Configuration) - interact with this to manage interactive behavior | ||
* `Render()` - redraw the plot on the screen | ||
* `RenderRequest()` - non-blocking request to redraw the plot | ||
ScottPlot API Documentation: | ||
* [ScottPlot 4.1](api) | ||
* ScottPlot 5.0 (still in development) | ||
|
||
Additional Links: | ||
* [ScottPlot.NET Home Page](https://scottplot.net/) | ||
* [ScottPlot 4 Cookbook](https://scottplot.net/cookbook/4.1/) | ||
* [ScottPlot FAQ](https://scottplot.net/faq/) | ||
* [ScottPlot on GitHub](https://github.com/scottplot/scottplot) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.