mikehuns Posted July 15, 2007 Report Share Posted July 15, 2007 Maybe I'm crazy but I can't find anywhere how to make charts look transparent. I see many examples in the gallery with that slick semi-transparent look but can't make it happen anywhere. Anyone know how to do this? Is there a custom palette somewhere? I want to buy this but that is a slight issue. Other companies have that easily implemented. Thank You Mike Hunsberger<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Tril0Byte CodeWorks LLC http://www.tril0byte.com Home of the Crypt Guardian Account Keeper Quote Link to comment Share on other sites More sharing options...
Frank Posted July 15, 2007 Report Share Posted July 15, 2007 Simple: chart.Series[0].Color = Color.FromArgb(128,0,255,0); You can do this to any color property in the chart. Quote Link to comment Share on other sites More sharing options...
mikehuns Posted July 16, 2007 Author Report Share Posted July 16, 2007 Thank you that totally helped for one series in Bar type charts. Looks great. But I am still at a loss on how to do that in Pie/Donut charts etc for each slice. I looked over the API and still don't see that. Can you clue me in on how to do that too? Thanks Mike H Quote Link to comment Share on other sites More sharing options...
Frank Posted July 16, 2007 Report Share Posted July 16, 2007 Similar, except that insted of the Series collection you use the Points collection: chart.Points[0].Color = ... Quote Link to comment Share on other sites More sharing options...
mikehuns Posted July 16, 2007 Author Report Share Posted July 16, 2007 Well that isn't the best implementation ever especially with variable slice counts but it's doable. Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.