溫馨提示×

c# scottplot能導(dǎo)出圖表嗎

c#
小樊
81
2024-11-19 20:44:54
欄目: 編程語言

是的,ScottPlot 是一個用于創(chuàng)建和顯示科學(xué)圖表的 C# 庫。它支持將圖表導(dǎo)出為常見的圖像格式,如 PNG、JPEG 和 BMP。以下是一個簡單的示例,展示了如何使用 ScottPlot 導(dǎo)出圖表為 PNG 圖像:

using ScottPlot;
using System;
using System.Drawing;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個簡單的圖表
        var plt = new Plot(600, 400);
        plt.PlotBar(new double[] { 1, 3, 2, 5, 4 }, new double[] { 3, 5, 1, 6, 4 });

        // 設(shè)置圖表標(biāo)題和軸標(biāo)簽
        plt.Title("Bar Chart Example");
        plt.xlabel("X Axis");
        plt.ylabel("Y Axis");

        // 導(dǎo)出圖表為 PNG 圖像
        string filePath = "chart.png";
        plt.SaveFig(filePath);

        Console.WriteLine($"Chart saved to {filePath}");
    }
}

在這個示例中,我們首先創(chuàng)建了一個簡單的柱狀圖,然后設(shè)置了圖表的標(biāo)題和軸標(biāo)簽。最后,我們使用 SaveFig 方法將圖表導(dǎo)出為名為 “chart.png” 的 PNG 圖像。

0