GraphUtility 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package GraphUtility --version 1.0.5
NuGet\Install-Package GraphUtility -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GraphUtility" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GraphUtility --version 1.0.5
#r "nuget: GraphUtility, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GraphUtility as a Cake Addin
#addin nuget:?package=GraphUtility&version=1.0.5

// Install GraphUtility as a Cake Tool
#tool nuget:?package=GraphUtility&version=1.0.5
internal partial class GraphUtilityTest : Form
{
    public GraphUtilityTest()
    {
        Font = SystemInformation.MenuFont;
        StartPosition = FormStartPosition.CenterScreen;

        var f = new Font("Times New Roman", 12, FontStyle.Italic);
        GraphUtility.Graph gu = new GraphUtility.Graph("graph title", f);

        MenuStrip menu = new MenuStrip() { Parent = this, };
        var toolStripMenuItemTest = new ToolStripMenuItem() { Text = "Test", };
        var toolStripMenuItemSettings = new ToolStripMenuItem() { Text = "Settings", };

        var toolStripMenuItemAddCurve1 = new ToolStripMenuItem() { Text = "AddCurve1", };
        menu.Items.Add(toolStripMenuItemTest);
        menu.Items.Add(toolStripMenuItemSettings);

        var toolStripMenuItemLabel = new ToolStripMenuItem() { Text = "set label direct", CheckOnClick = true, };
        toolStripMenuItemSettings.DropDownItems.Add(toolStripMenuItemLabel);
        var toolStripMenuItemGraphType = new ToolStripMenuItem() { Text = "set bargraphtype to stack", CheckOnClick = true, };
        toolStripMenuItemSettings.DropDownItems.Add(toolStripMenuItemGraphType);


        toolStripMenuItemTest.DropDownItems.Add(toolStripMenuItemAddCurve1);

        toolStripMenuItemAddCurve1.Click += (sender, e) =>
        {
            gu.ClearCurve();
            gu.SetXAxisTitle("x value");
            var s = 2000;
            var ppl = GraphUtility.GraphHelper.ToPointPairList(Enumerable.Range(-s, (s * 2) + 1).Select(x => new ZedGraph.PointPair(x, x * 2 - 20)));
            gu.AddCurve(ppl, "y=2x-20", Color.Red);
            gu.SetYAxisTitle("red");

            var ppl2 = GraphUtility.GraphHelper.ToPointPairList(Enumerable.Range(-s, (s * 2) + 1).Select(x => new ZedGraph.PointPair(x, Math.Pow(x, 2) - 4 * x + 1)));
            gu.AddCurve2(ppl2, "y=x^2-4x+1", Color.Green);
            gu.SetY2AxisTitle("green");

            gu.ReSetLineGraphType(ZedGraph.LineType.Normal);

            if (toolStripMenuItemLabel.Checked)
            {
                /** x軸ラベルを直接指定する場合 */
                gu.SetXAxisType(ZedGraph.AxisType.Text, 0, Enumerable.Range(0, ppl.Count).Select(x => string.Format("{0}?", x)));
                gu.SetXAxisMajorStep(-1);
            }
            else
            {
                gu.SetXAxisType(ZedGraph.AxisType.Linear);
                gu.SetXAxisScaleFormat("0");
                gu.SetXAxisMajorStep(-1);
            }

            gu.RefreshGraph();

            gu.ResetPointValueMode(GraphUtility.Graph.PointValueMode.Normal);

        };

        var toolStripMenuItemAddBar1 = new ToolStripMenuItem() { Text = "AddBar1", };
        toolStripMenuItemTest.DropDownItems.Add(toolStripMenuItemAddBar1);
        toolStripMenuItemAddBar1.Click += (sender, e) =>
        {
            gu.ClearCurve();

            if (toolStripMenuItemGraphType.Checked)
            {
                /** 積み上げ棒グラフ */
                gu.ReSetBarGraphType(ZedGraph.BarType.Stack);
            }
            else
            {
                /** 棒グラフ */
                gu.ReSetBarGraphType(ZedGraph.BarType.Cluster);
            }

            var ppl = GraphUtility.GraphHelper.ToPointPairList();
            var ppl2 = GraphUtility.GraphHelper.ToPointPairList();

            foreach (var d in Enumerable.Range(-10, 21))
            {
                ppl.Add(GraphUtility.GraphHelper.ToPointPair(DateTime.Today.AddDays(d), d * 4));
                ppl2.Add(GraphUtility.GraphHelper.ToPointPair(DateTime.Today.AddDays(d), d * 4 + d));
            }
            gu.AddBar(ppl, "date", Color.Red);
            gu.AddBar(ppl2, "date2", Color.Blue);

            if (toolStripMenuItemLabel.Checked)
            {
                /** x軸ラベルを直接指定する場合 */
                gu.SetXAxisType(ZedGraph.AxisType.Text, 0, Enumerable.Range(0, ppl.Count).Select(x => string.Format("{0}?", x)));
                gu.SetXAxisMajorStep(-1);
            }
            else
            {
                /** x軸ラベルを日付にする場合  */
                gu.SetXAxisType(ZedGraph.AxisType.Date, 45);
                gu.SetXAxisScaleFormat("yyyy/MM/dd");
                gu.SetXAxisMajorStep(7);
            }

            gu.ResetPointValueMode(GraphUtility.Graph.PointValueMode.DateTime);

            gu.RefreshGraph();

        };

        /** if want to remove default savemenu, clear ContextMenuStrip */
        //gu.ContextMenuStrip.Items.Clear();

        var graph = gu.MainGraph;
        Controls.Add(graph);
        Controls.Add(menu);
        SizeChanged += (sender, e) =>
        {
            graph.Height = ClientSize.Height - menu.Height;
        };
        ClientSize = new Size(800, 600);
        return;
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 167 1/8/2024
1.1.0 275 3/4/2023
1.0.8 258 12/12/2022
1.0.7 419 7/8/2022
1.0.6 396 6/25/2022
1.0.5 398 3/20/2022
1.0.4 390 3/5/2022
1.0.3 378 2/21/2022
1.0.2 370 2/19/2022