{{ message }}
-
Beta Was this translation helpful? Give feedback.
Answered by
BlokyMose
Nov 3, 2025
Replies: 1 comment 1 reply
-
|
I didn't know using Plotly.NET.CSharp;
...
static void CreateAndOpenCharts(GenericChart[] charts, string fileName)
{
var dashboardChart = Plotly.NET.CSharp.Chart.Grid(charts, charts.Length, 2)
.WithTitle("Core Loop Dashboard Report")
.WithSize(1200, 600 * charts.Length);
var filePath = Path.Combine(Environment.CurrentDirectory, $"{fileName}.html");
Plotly.NET.CSharp.GenericChartExtensions.SaveHtml(dashboardChart, filePath);
FileUtility.OpenFile($"{fileName}.html");
}Thank you, Kevin! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BlokyMose
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

I didn't know
using Plotly.NET.CSharp;is needed to showGrid()withgChartsoverload. So the solution is,Thank you, Kevin!
You're the best ❤️ !