ChartImageWrapMode 枚举
定义
指定背景图像的绘制模式。Specifies the drawing mode for a background image.
public enum class ChartImageWrapMode
public enum ChartImageWrapMode
type ChartImageWrapMode =
Public Enum ChartImageWrapMode
- 继承
字段
| Scaled | 4 | 背景图像将进行缩放以适合整个图表元素的大小。Background image is scaled to fit the entire chart element. |
| Tile | 0 | 背景图像进行平铺以适应整个图表元素。Background image is tiled to fit the entire chart element. |
| TileFlipX | 1 | 围绕 X 轴反转其他每个平铺图像。Every other tiled image is reversed around the X-axis. |
| TileFlipXY | 3 | 围绕 X 轴和 Y 轴反转其他每个平铺图像。Every other tiled image is reversed around the X-axis and Y-axis. |
| TileFlipY | 2 | 每个其他平铺图像围绕 Y 轴进行反转。Every other tiled image is reversed around the Y-axis. |
| Unscaled | 100 | 不缩放背景图像。Background image is not scaled. |
注解
ChartImageWrapMode枚举表示由控件的属性设置的背景图像的绘制模式 BackImageWrapMode Chart 。The ChartImageWrapMode enumeration represents the drawing mode for a background image, as set by the BackImageWrapMode property of the Chart control. 若要为图表元素设置背景图像,请使用 BackImage 属性。To set a background image for a chart element, use the BackImage property.
备注
如果指定无比例的值,则绘制图像的位置将取决于 BackImageAlignment 属性设置。If you specify the Unscaled value, the location where the image is drawn will depend on the BackImageAlignment property setting.