Unproportional Bubble Chart with the size paramater
问题 I´ve created a bubble chart and I put in some testing values as follow: this.chart1.Series["blueBubble"].Points.AddXY(2, 3, 6); this.chart1.Series["redBubble"].Points.AddXY(1, 0, 7); this.chart1.Series["yellowBubble"].Points.AddXY(1, 3, 8); As I put in the size of the particular bubble to the third parameter of AddXY function, the sizing is done in a completely wrong proportional representation. See picture: How can I change the bubble sizes to the right proposition representation? 回答1: This