バージョン

BackgroundImageFileName プロパティ

コントロールの背景に表示する背景画像を設定します。
シンタックス
'宣言
 
Public Property BackgroundImageFileName As String
public string BackgroundImageFileName {get; set;}
解説

チャートの背景に表示する有効な画像ファイルのフル パスとファイル名を指定します。選択された画像は BackgroundImageStyle の値に応じて、チャートの大きさに合わせてスケールされる(デフォルト設定)か、または使用可能なスペースを埋めるためにタイルされます。

使用例
'sets the image to use as the background
     UltraChart1.BackgroundImage = New Bitmap("C:\my documents\picture.bmp")
     'determines the style of the image, center, steched, tiled
     UltraChart1.BackgroundImageStyle = Infragistics.UltraChart.Shared.Styles.ImageFitStyle.Centered
// sets the image to use as the background
     UltraChart1.BackgroundImage = new Bitmap("C:\my documents\picture.bmp");
     // determines the style of the image, center, steched, tiled
     UltraChart1.BackgroundImageStyle = Infragistics.UltraChart.Shared.Styles.ImageFitStyle.Centered;
参照