1

DynamicDataDisplay3 を使用してグラフを描画する必要があります。X軸を日付や整数ではなく文字列に変更する方法が見つからないことを除いて、すべて正常に機能します。これは私がやろうとした方法ですが、X軸に1つの値しか得られません:

int i = 0;
                using (MySqlDataReader reader = command.ExecuteReader())
                {
                    while (reader.Read())
                    {
                        i++;
                        Analyze build = new Analyze();
                        build.id = i;
                        build.build = Convert.ToString(reader[0]);
                        builds.Add(build);
                        n1.Add(Convert.ToInt32(reader[1]));
                    }
                }

                var datesDataSource = new EnumerableDataSource<Analyze>(builds);
                datesDataSource.SetXMapping(x => x.id);
                var numberOpenDataSource = new EnumerableDataSource<int>(n1);
                numberOpenDataSource.SetYMapping(y => y);

                CompositeDataSource compositeDataSource1 = new CompositeDataSource(datesDataSource, numberOpenDataSource);
                chBuild.AddLineGraph(compositeDataSource1, new Pen(Brushes.Blue, 2), new CirclePointMarker { Size = 6, Fill = Brushes.Blue }, new PenDescription(Convert.ToString(cmbBuildVertical.SelectedItem)));
                chBuild.Viewport.FitToView();
4

1 に答える 1

2

これに似たものを処理するために、独自のLabelProviderを作成しました。別の何かを表すために、DateTimeラベルを整数にオーバーライドしたかったのです。あなたの場合、あなたはこのようなものを使うことができます:

public class StringLabelProvider : NumericLabelProviderBase {

    private List<String> m_Labels;
    public List<String> Labels {
        get { return m_Labels; }
        set { m_Labels = value; }
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="ToStringLabelProvider"/> class.
    /// </summary>
    public StringLabelProvider(List<String> labels) {                                                
        Labels = labels;                                    
    }

    public override UIElement[] CreateLabels(ITicksInfo<double> ticksInfo) {            

        var ticks = ticksInfo.Ticks;
        Init(ticks);            

        UIElement[] res = new UIElement[ticks.Length];
        LabelTickInfo<double> tickInfo = new LabelTickInfo<double> { Info = ticksInfo.Info };
        for (int i = 0; i < res.Length; i++) {
            tickInfo.Tick = ticks[i];
            tickInfo.Index = i;
            string labelText = "";

            labelText = Labels[Convert.ToInt32(tickInfo.Tick)];

            TextBlock label = (TextBlock)GetResourceFromPool();
            if (label == null) {
                label = new TextBlock();
            }

            label.Text = labelText;

            res[i] = label;

            ApplyCustomView(tickInfo, label);
        }
        return res;
    }
}

ティックのリストを作成し、作成したLabelProviderに送信できます。このような :

StringLabelProvider labelProvider = new StringLabelProvider(yourLabelList);
yourAxis.LabelProvider = labelProvider;
于 2013-03-21T18:56:08.597 に答える