在C#中,使用Plotly庫設置圖表樣式需要先安裝Plotly.NET包
Install-Package Plotly.NET -Version 2.0.0-preview.6
接下來,你可以使用以下代碼示例創建一個簡單的折線圖并自定義其樣式:
using System;
using Plotly.NET;
using Plotly.NET.TraceObjects;
namespace PlotlyExample
{
class Program
{
static void Main(string[] args)
{
// 創建數據
double[] x = new double[] { 1, 2, 3, 4, 5 };
double[] y = new double[] { 2, 4, 6, 8, 10 };
// 創建折線圖
var line = Chart.Line<double, double, double>(x, y);
// 設置圖表標題和軸標簽
var chart = Chart.Plot<double, double, double>(line)
.WithTitle("My Line Chart")
.WithXTitle("X Axis")
.WithYTitle("Y Axis");
// 設置線條樣式
chart.WithLine(new Line()
{
Color = "red",
Width = 2,
Dash = Dash.Dot
});
// 設置圖表布局
chart.WithLayout(new Layout()
{
PaperBgColor = "white",
PlotBgColor = "white",
Font = new Plotly.NET.LayoutObjects.Font()
{
Family = "Arial",
Size = 12,
Color = "black"
}
});
// 顯示圖表
chart.Show();
}
}
}
這個示例展示了如何創建一個簡單的折線圖,并設置圖表標題、軸標簽、線條樣式和圖表布局。你可以根據需要修改這些設置以滿足你的需求。更多關于Plotly.NET的信息和示例,請參閱官方文檔:https://plotly.net/