is it possible to align tables to x-axis with plotly.net (like in this example with matplotlib Aligning table to X-axis using matplotlib Python)?
Bro i want to use plotly.net also in C# how to implement this can you help Bcoz i am including Plotly.NET package but sample code it gives error to classes, can you help me for this example Scatter/PlotlyChart class not defined error
var scatterTrace1 = new Scatter()
{
x = new { 1, 2, 3, 4 },
y = new { 10, 15, 13, 17 },
mode = “markers”,
name = “Trace 1”
};
var scatterTrace2 = new Scatter()
{
x = new { 2, 3, 4, 5 },
y = new { 16, 5, 11, 9 },
mode = “lines”,
name = “Trace 2”
};
var plot = new PlotlyChart()
.AddTrace(scatterTrace1)
.AddTrace(scatterTrace2)
.Show();