Teechart多轴创建

时间:2013-02-04 17:24:53

标签: c# teechart

我是C#编程的新手。我在一家公司工作,有人完成了一些任务,并留下了图形部分。现在我必须这样做。

我在C#中使用steema图表,我想创建图表左侧多轴的图表(y轴)和所有的comman x轴。最左侧的每个轴将是不同的轴长度。

我为不同的传感器创建了六个复选框,当我勾选该框时,应该出现关于默认长度的轴。我创建了复选框,但我无法设置轴长度,也无法绘制多个轴。

我不知道这是正确的问题吗?如果我错了,请原谅我?如果我没有提供太多信息,请问我,我会这样做。

我想绘制图表类型,如附图所示。 X轴(系统时间)对于所有系列都是通用的,并且Y轴对于每个系列是不同的。我有所有系列的chek盒,因此当选中复选框时,该系列Y轴必须显示默认轴范围(例如min(0)和max(1000))。 chart

提前致谢。

1 个答案:

答案 0 :(得分:1)

前一段时间Steema支持论坛讨论过非常相似的内容。 看看here

我在这里发布了相同的代码:

    int nSeries = 3;
    private void InitializeChart()
    {
        tChart1.Aspect.View3D = false;
        tChart1.Header.Visible = false;
        tChart1.Legend.Alignment = LegendAlignments.Bottom;
        for (int i = 0; i < nSeries; i++)
        {
            new Steema.TeeChart.Styles.Line(tChart1.Chart);
            tChart1.Axes.Custom.Add(new Steema.TeeChart.Axis(tChart1.Chart));
            tChart1[i].CustomVertAxis = tChart1.Axes.Custom[i];
            tChart1.Axes.Custom[i].AxisPen.Color = tChart1[i].Color;
            tChart1.Axes.Custom[i].Grid.Visible = false;
            tChart1.Axes.Custom[i].Title.Visible = true;
            tChart1.Axes.Custom[i].Title.Caption = "Series" + i.ToString();
            tChart1[i].FillSampleValues(20);
            tChart1.Axes.Custom[i].PositionUnits = PositionUnits.Pixels;
        }

        tChart1.Panel.MarginUnits = PanelMarginUnits.Pixels;
        tChart1.Draw();
        PlaceAxes(0, 0, 0, 0, 0);
        tChart1.Draw();
    }

    private void PlaceAxes(int nSeries, int NextXLeft, int NextXRight, int MargLeft, int MargRight)
    {
        const int extraPos = 12;
        const int extraMargin = 105;
        //Variable
        int MaxLabelsWidth;
        int lenghtTicks;
        int extraSpaceBetweenTitleAndLabels;
        if (tChart1[nSeries].Active)
        {
            MaxLabelsWidth = tChart1.Axes.Custom[nSeries].MaxLabelsWidth();
            lenghtTicks = tChart1.Axes.Custom[nSeries].Ticks.Length;
            extraSpaceBetweenTitleAndLabels = (tChart1.Axes.Custom[nSeries].Title.Width);//- tChart1.Axes.Custom[nSeries].MaxLabelsWidth());
            if (tChart1.Axes.Custom[nSeries].OtherSide)
            {
                tChart1.Axes.Custom[nSeries].RelativePosition = NextXRight;
                NextXRight = NextXRight - (MaxLabelsWidth + lenghtTicks + extraSpaceBetweenTitleAndLabels + extraPos);
                MargRight = MargRight + extraMargin;
            }

            else
            {
                tChart1.Axes.Custom[nSeries].RelativePosition = NextXLeft;
                NextXLeft = NextXLeft - (MaxLabelsWidth + lenghtTicks + extraSpaceBetweenTitleAndLabels + extraPos);
                MargLeft = MargLeft + extraMargin;
            }

            tChart1.Panel.MarginLeft = MargLeft;
            tChart1.Panel.MarginRight = MargRight;

            nSeries++;

            if (nSeries <= tChart1.Series.Count - 1)
            {
                PlaceAxes(nSeries, NextXLeft, NextXRight, MargLeft, MargRight);
            }
        }
    }