我想用不同数据集(dtDev、dtProd、dtQA)绑定多个系列的 rad 图表,可以告诉我如何编码吗?
仅举个盲例,因为我们有三个日期 dtDev、dtProd、dtQA。
请治疗,提前谢谢!
monthlyradchartcontrole.Clear()
Dim dtDev as dataset = nothing
dtDev = obj.datareturn(parameters)
monthlyradchartcontrole.DataSource = dtDev
monthlyradchartcontrole.DataBind()
monthlyradchartcontrole.Series(0).DataXColumn = "ScheduledStartDate"
monthlyradchartcontrole.Series(0).DataYColumn = "ChamberUtilization"
monthlyradchartcontrole.PlotArea.XAxis.AxisLabel.TextBlock.Text = monthlyXaxislableName
monthlyradchartcontrole.PlotArea.XAxis.AxisLabel.Visible = True
monthlyradchartcontrole.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red
monthlyradchartcontrole.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.Position.Auto = True
monthlyradchartcontrole.PlotArea.YAxis.AxisLabel.Visible = True
monthlyradchartcontrole.PlotArea.YAxis.AxisLabel.TextBlock.Text = monthlyYaxislableName
monthlyradchartcontrole.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red
monthlyradchartcontrole.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.Position.Auto = True
monthlyradchartcontrole.Legend.Visible = False
谢谢你,