Bubble in Legend
Posted: Tue Sep 28, 2004 10:51 pm
Christopher,
You asked for a snippet, the last bubble in the legend is flattened?
Here is the snippet of code:
[i = 1
adoRs.MoveFirst
Do Until adoRs.EOF
With QuadrantChart.Series(1).asBubble
.AddBubble adoRs.Fields(3).Value, adoRs.Fields(2).Value, 0.8, i, RGB(ChartColorRed(i), ChartColorGreen(i), ChartColorBlue(i))
i = i + 1
adoRs.MoveNext
End With
Loop]
What do you think?
BigMike[/code]
You asked for a snippet, the last bubble in the legend is flattened?
Here is the snippet of code:
[i = 1
adoRs.MoveFirst
Do Until adoRs.EOF
With QuadrantChart.Series(1).asBubble
.AddBubble adoRs.Fields(3).Value, adoRs.Fields(2).Value, 0.8, i, RGB(ChartColorRed(i), ChartColorGreen(i), ChartColorBlue(i))
i = i + 1
adoRs.MoveNext
End With
Loop]
What do you think?
BigMike[/code]