' 系列的数目是由第二个维数决定的。' 在本例中,图表将有两个系列,' 每个系列有五个数据点。Dim arrPriceQuantity(1 to 5, 1 to 2)Dim i as IntegerFor i = 1 to 5 arrPriceQuantity(i, 1) = i ' Series 1 arrPriceQuantity(i, 2) = 0 - i ' Series 2Next iMsChart1.ChartData = arrPriceQuantity