Hi. I'm looking for how to set the item demension at the bubble chart.
my datasource is like this.
and i defined x , y axis on aspx page like this.
ths code works fine indicating bubble. but i don't know about setting each item's demension.
i wish to set demension value from "profit" datatable field.
my datasource is like this.
Dim dataTableBubbleData = New DataTable() dataTableBubbleData.Columns.Add("Year") dataTableBubbleData.Columns.Add("Budget") dataTableBubbleData.Columns.Add("Profit") dataTableBubbleData.Rows.Add(New Object() {"2008", "7", "2"}) dataTableBubbleData.Rows.Add(New Object() {"2009", "9", "4"}) dataTableBubbleData.Rows.Add(New Object() {"2010", "7", "3"}) GetBubbleData = dataTableBubbleData
End Function <telerik:RadChart ID="RadChartBubbleChart" SkinsOverrideStyles="true" runat="server" Width="800" Height="400"> <ChartTitle> <TextBlock Text="Bubble Chart"> </TextBlock> </ChartTitle> <PlotArea> <XAxis DataLabelsColumn="Year"> <AxisLabel Visible="true"> <Appearance Visible="True"> </Appearance> <TextBlock Text="Year"> </TextBlock> </AxisLabel> </XAxis> <YAxis AxisMode="Normal" MaxValue="12" AutoScale="false"> <Appearance MinorTick-Visible="false" MinorGridLines-Visible="false"> <MinorGridLines Visible="False"></MinorGridLines> </Appearance> <AxisLabel Visible="true"> <Appearance Visible="True"> </Appearance> <TextBlock Text="Budget"> </TextBlock> </AxisLabel> </YAxis> </PlotArea> <Series> <telerik:ChartSeries DataYColumn="Budget" Type="Bubble" Name="money flow" Appearance-LabelAppearance-Visible="false"> <Appearance> <LabelAppearance Visible="False"> </LabelAppearance> </Appearance> </telerik:ChartSeries> </Series> </telerik:RadChart>ths code works fine indicating bubble. but i don't know about setting each item's demension.
i wish to set demension value from "profit" datatable field.