Search found 4 matches

by Ced
Thu Aug 28, 2008 2:54 pm
Forum: .NET
Topic: Borders on Image Export from the chart
Replies: 6
Views: 4542

posted file

uc.zip gives border
by Ced
Thu Aug 28, 2008 2:17 pm
Forum: .NET
Topic: ChartListbox Checkitems
Replies: 2
Views: 2158

Ok seems to work. may of been an error somewhere else. I simple store the visible with the title in a hashtable and set them to the previous version after recreating the timeseries. thx
by Ced
Thu Aug 28, 2008 2:15 pm
Forum: .NET
Topic: Borders on Image Export from the chart
Replies: 6
Views: 4542

Borders on Image Export from the chart

when exporting an image I always get a border around it, how can I remove this? Stream stream = new MemoryStream(); ImageExportFormat image = chart.Export.Image.PNG; image.Width = width; image.Height = height; image.Save(stream); Image img = Image.FromStream(stream); Have Tried chart.Panel.Bevel.Inn...
by Ced
Thu Aug 28, 2008 9:29 am
Forum: .NET
Topic: ChartListbox Checkitems
Replies: 2
Views: 2158

ChartListbox Checkitems

How do I find out which items are checked in the Chartlistbox? It seems that checking an item in the CLB does not change the visible property of the series, when selected..............