バージョン

BackgroundImageStyle プロパティ (UltraChart)

チャートに表示する背景画像を引き伸ばすか、チャートの使用可能な領域を埋めるように画像をタイルするかを決定します。
シンタックス
'宣言
 
Public Property BackgroundImageStyle As ImageFitStyle
public ImageFitStyle BackgroundImageStyle {get; set;}
解説

チャートの背景に表示する画像を指定するには、BackgroundImage プロパティを使用します。

使用例
'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;
参照