# Plot.NET **Repository Path**: scisharp/Plot.NET ## Basic Information - **Project Name**: Plot.NET - **Description**: .NET wrapper of plotly.js for ICSharpCore - **Primary Language**: C# - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-07-12 - **Last Updated**: 2021-12-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Plot.NET Plot data as HTML [![Join the chat at https://gitter.im/publiclab/publiclab](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sci-sharp/community) [![NuGet](https://img.shields.io/nuget/dt/PlotNET.svg)](https://www.nuget.org/packages/PlotNET) Convert data into `plotly.js` compatible format and generate an HTML showing in any browser. The API keep same as `matplotlib`. For example: ```csharp var trace1 = new { x: new int[]{1, 2, 3, 4}, y: new int[]{10, 15, 13, 17}, type: 'scatter' }; var trace2 = new { x: new int[]{1, 2, 3, 4}, y: new int[]{16, 5, 11, 9}, type: 'scatter' }; ``` ```html
```