Search found 4 matches
- 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
- Thu Aug 28, 2008 2:17 pm
- Forum: .NET
- Topic: ChartListbox Checkitems
- Replies: 2
- Views: 2158
- 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...
- 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..............