Bubble series problem
Posted: Tue Jul 24, 2007 4:05 pm
Dear All,
I have two problems of the bubble series.
1- I would like to have two different colour when radius >0 is blue else red colour. I did use but for some reason, in the series, there is a strang colour - green or dark red like that. Very strange. Please advise how to fix this issue.
See this colour error that I meant:
2- My radius value is between -30 to +30 and my X and Y are six figure value for Y from 1,300,000 to 1,600,000 and X from -4,000,000 to 7, 000, 000. When I plot there is nothing I can see in the screen due to small radius in the big axis; therefore I fixed this by factoring the radius value based on
I then come up with a new radius but some of those bubbles are outside of the X, Y view (some portions of the some bubbles are invisible unless we pan it in or zoom it in). Could you please advise if there is anyway to ensure that all bubbles are always within the X, Y- not half of it are outside the X, and Y so that it's not easy to view. We need full circle buble I mean in the full extent chart view.
Regards,
LG
I have two problems of the bubble series.
1- I would like to have two different colour when radius >0 is blue else red colour. I did use
Code: Select all
buble.ColorEach = true;
See this colour error that I meant:
Code: Select all
buble.ColorEach = true;
buble.Add(516295, 1383950, 5000, "1383950", Color.Red);
buble.Add(558722, 1354150, 25000, "1354150", Color.Red);
buble.Add(604955, 1494730, 10000, "1494730", Color.Blue);
buble.Add(156076, 1675080, 5000, "1675080", Color.Red);
Code: Select all
float fltPortion = Math.Abs((fltMaxY - fltMinY) * 1.0f /(Math.Abs(fltMaxValX) - Math.Abs(fltMinValX)));
radius = radius * fltPortion;
Regards,
LG