AreaChartBrush not returning what I set it to
Posted: Tue Jun 05, 2007 6:42 pm
AreaChartBrush doesn't seem to properly return the correct brush style when you set it to certain styles
The following code demonstrates the problem:
If there a way to get back the value that I put in AreaChartBrush?
The following code demonstrates the problem:
Code: Select all
Private Sub Form_Load()
TChart1.AddSeries scArea
TChart1.Series(0).asArea.AreaChartBrush.Style = bsCrossSmall
If TChart1.Series(0).asArea.AreaChartBrush.Style = bsCrossSmall Then
MsgBox "It Worked!"
Else
MsgBox "Uh-oh"
End If
End Sub