棒グラフにプロットする乱数を生成する次のコードがあります。ただし、特定の行にブレークポイントを設定した場合にのみ正しく機能します。それ以外の場合は、10 個の新しいデータポイントがすべてまったく同じ数になります。
case 3:
//Add ten data sets to go through all default colors
DatasetPairing<BarPresentation, BarGraphDataset<GraphableDouble>> datasetPairing;
foreach (HorizontalBarPlotter<GraphableDouble, GraphableDouble> graphPlotter in this.Data.GraphPlots)
{
for (int i = 1; i <= 11; i++)
{
datasetPairing = new DatasetPairing<BarPresentation, BarGraphDataset<GraphableDouble>>();
datasetPairing.DatasetPresentation = new BarPresentation();
datasetPairing.GraphableDataset = GetOneDataset(0, false);
graphPlotter.DatasetMap.Add(datasetPairing); //breakpoint set here
}
List<IAxis> xAxes;
xAxes = new List<IAxis>();
xAxes.Add(graphPlotter.DetermineXAxis());
this.Data.BottomAxes = xAxes;
this.Data.TopAxes = xAxes;
}
NextStep = "Return to a single dataset and add comment to values for tooltips";
break;
なぜこれが起こっているのかわかりません。また、このような問題は聞いたことがありません...おそらく、ビジュアルスタジオのバグですか? どんな助けでも大歓迎です