IBrush.LoadImage
IBrush

procedure LoadImage(Const FileName: WideString);

Type Library
TeeChartx

Description
The LoadImage method loads a bitmap into an IBrush element from the specified path.

Example [Visual Basic]:

Private Sub Command1_Click()

TChart1.Series(0).asBar.BarBrush.ClearImage

End Sub

Private Sub Form_Load()

TChart1.AddSeries scBar

TChart1.Series(0).FillSampleValues 7

TChart1.Series(0).asBar.BarBrush.LoadImage "C:\TestFiles\BrushStyles\TeeBrush10.bmp"

End Sub