c#用于圆度计软件图表的库是什么?

时间:2012-07-18 18:22:44

标签: c# charts

我正在研究一个计量实验室,我需要用c#开发一个圆度计设备的软件,我已经开始了,我发现了一个问题,我需要用软件来显示实时图形从正在进行的测量中,我需要使用像Mscharts或Zedgraph这样的库,这对于刷新信息非常快,并且支持Polar或雷达等圆形图,尤其是极坐标图。 我在大多数库中看到的问题是它们都缺乏对圆形图的支持而且相对较慢。 有没有人对我可以使用的lybrary有所了解?

感谢您的帮助。 PS:软件应该显示如下图形: enter image description here

enter image description here The final software should be like this one

4 个答案:

答案 0 :(得分:1)

不确定这是否有帮助。 Xceed Charts在他们的高级部分讨论了做极坐标图表。不幸的是,他们没有提供任何图像,因此您应该与他们的销售人员交谈,看看您是否可以获得评估的评估版。

答案 1 :(得分:1)

我会用GDI(+)渲染它们(在winforms应用程序中)。

是的,这是基本的线条画,但它对你给出的例子足够强大。你需要刷新你的高中数学,但它会让你对输出有很多控制,而且会很快。

答案 2 :(得分:1)

考虑使用roguewave IMSL Numerical .NET库

homepage of the IMSL numerical .NET library

Examples of graph, resembling what you have posted above

特别是极地情节似乎是你需要的。

答案 3 :(得分:1)

我很惊讶ZedGraph并不支持开箱即用的极坐标图,而且网上的例子很少。使用this guildline,我用C#中的ZedGraph创建了自己的极坐标图。我希望WillKraemer已经解决了他的问题(4年过去了),其他人发现我的实现很有用。

首先是ZedGraphControl初始化:

        myZg = new ZedGraphControl();
        GraphPane myPane = myZg.GraphPane;

        // Init lists
        RadarPointList dseries1 = new RadarPointList();
        RadarPointList dseries2 = new RadarPointList();

        // Maximize available space in pane
        myPane.Legend.Position = LegendPos.InsideTopLeft;
        myPane.Title.IsVisible = false;
        myPane.XAxis.IsVisible = false;
        myPane.YAxis.IsVisible = false;
        myPane.Border.IsVisible = false;
        myPane.Chart.Border.IsVisible = false;
        myPane.Margin.All = 0;

        // Create concentric grid with 30 degrees spacing & add corresponding labels
        for (double i = 0; i < 36; i+=3.0)
        {
            TextObj gridlbs = new TextObj((i * 10.0).ToString("0°"), (radius + 10.0) * Math.Cos((i * 10.0 * Math.PI) / 180.0), (radius + 10.0) * Math.Sin((i * 10.0 * Math.PI) / 180.0));
            gridlbs.FontSpec.Border.IsVisible = false;
            LineObj gridlns = new LineObj(0, 0, radius * Math.Cos((i * 10.0 * Math.PI) / 180.0), radius * Math.Sin((i * 10.0 * Math.PI) / 180.0));

            myPane.GraphObjList.Add(gridlbs);
            myPane.GraphObjList.Add(gridlns);
        }

        // Draw circular grid, 5 should look okay
        for (double i = (radius / 5.0); i <= radius; i += (radius / 5.0))
        {
            EllipseObj gridcrl = new EllipseObj(-i, i, 2.0 * i, 2.0 * i);
            gridcrl.ZOrder = ZOrder.E_BehindCurves;
            myPane.GraphObjList.Add(gridcrl);
        }

        // Make sure the pane is big enough to fit the labels around the polar plot
        myPane.XAxis.Scale.Min = -(radius + 20.0);
        myPane.XAxis.Scale.Max = (radius + 20.0);
        myPane.YAxis.Scale.Min = -(radius + 20.0);
        myPane.YAxis.Scale.Max = (radius + 20.0);

        _selectedRadius = radius;
        // Keep X & Y axis in the correct ratio to avoid distorting polar circle 
        myZg_Resize((object)"Startup", EventArgs.Empty);
        myZg.Resize += new EventHandler(myZg_Resize);
        myZg.ZoomEvent  += new ZedGraphControl.ZoomEventHandler(myZg_ZoomEvent2);

        // Draw snailly curves (example)
        for (int i = 0; i < 360; i++)
        {
            double r = (double)i/360.0 * radius;
            PointPair pt = new PointPair(PointPair.Missing, r, null);
            dseries1.Add(pt);
            PointPair pt2 = new PointPair(PointPair.Missing, radius - r, null);
            dseries2.Add(pt2);
        }

        // Curves are somple LineItem
        FirstCurve = myPane.AddCurve("Snail", dseries1, Color.Blue, SymbolType.None);
        SecondCurve = myPane.AddCurve("antiSnail", dseries2, Color.Red, SymbolType.None);

        // Rotate the lists to aling with labels
        dseries1.Rotation = 0;
        dseries2.Rotation = 0;

我必须确保在表单/控件调整大小时图形不会失真,所以我在调整大小事件中添加了这个:

    protected void myZg_Resize(object sender, EventArgs e)
    {
        GraphPane pane = myZg.GraphPane;
        myZg.AxisChange();
        bool IsXMin = ( pane.Rect.Width < pane.Rect.Height ) ? true : false;
        if (IsXMin)
        {   
            // Scale based on X (width)
            pane.XAxis.Scale.Max = (radius + 20.0); pane.XAxis.Scale.Min = -(radius + 20.0);
            double xPixPerUnit = (double)pane.Chart.Rect.Width / (pane.XAxis.Scale.Max - pane.XAxis.Scale.Min);
            pane.YAxis.Scale.Max = (double)pane.Chart.Rect.Height / xPixPerUnit / 2.0;
            pane.YAxis.Scale.Min = -pane.YAxis.Scale.Max;
            myZg.AxisChange();
        }
        else
        {
            // Scale based on Y (height)
            pane.YAxis.Scale.Max = (radius + 20.0); pane.YAxis.Scale.Min = -(radius + 20.0);
            double yPixPerUnit = (double)pane.Chart.Rect.Height / (pane.YAxis.Scale.Max - pane.YAxis.Scale.Min);
            pane.XAxis.Scale.Max = (double)pane.Chart.Rect.Width / yPixPerUnit / 2.0;
            pane.XAxis.Scale.Min = -pane.XAxis.Scale.Max;
            myZg.AxisChange();
        }
    }

此外,我决定阻止用户进行任何缩放操作:

    protected void myZg_ZoomEvent2(ZedGraphControl sender, ZoomState oldState, ZoomState newState)
    {
        myZg_Resize("zoomevent", EventArgs.Empty);
    }

输出如下图所示:

enter image description here

建议随时欢迎!