套件 | mx.graphics |
類別 | public class Stroke |
繼承 | Stroke SolidColorStroke EventDispatcher Object |
從下列版本以後不建議使用: 4.0: 請使用 SolidColorStroke
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
... <mx:Stroke id="ticks" color="0xFF0000" weight="1"/> <mx:Stroke id="mticks" color="0x0000FF" weight="1"/> <mx:LineChart id="mychart" dataProvider="{ndxa}"> <mx:horizontalAxisRenderer> <mx:AxisRenderer placement="bottom" canDropLabels="true"> <mx:tickStroke>{ticks}</mx:tickStroke> <mx:minorTickStroke>{mticks}</mx:minorTickStroke> </mx:AxisRenderer> </mx:horizontalAxisRenderer> </LineChart> ...MXML 語法隱藏 MXML 語法
The <mx:Stroke>
tag inherits all the tag attributes
of its superclass, and adds the following tag attributes:
<mx:Stroke Properties alpha="1.0" caps="null|none|round|square" color="0x000000" joints="null|bevel|miter|round" miterLimit="1" pixelHinting="false|true" scaleMode="normal|none|horizontal|vertical" weight="1 (in most cases)" />
更多範例
相關 API 元素
公用方法
方法 | 定義自 | ||
---|---|---|---|
Stroke(color:uint = 0x000000, weight:Number = 0, alpha:Number = 1.0, pixelHinting:Boolean = false, scaleMode:String = "normal", caps:String = null, joints:String = null, miterLimit:Number = 1)
Constructor. | Stroke | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
會在 EventDispatcher 物件註冊事件偵聽程式,以便讓偵聽程式收到事件的通知。 | EventDispatcher | ||
Applies the properties to the specified Graphics object. | SolidColorStroke | ||
Generates a GraphicsStroke object representing
this stroke. | SolidColorStroke | ||
會將事件傳送到事件流程。 | EventDispatcher | ||
會檢查 EventDispatcher 物件是否有對特定的事件類型註冊偵聽程式。 | EventDispatcher | ||
指出物件是否有已定義的指定屬性。 | Object | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
會從 EventDispatcher 物件移除偵聽程式。 | EventDispatcher | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
會傳回指定之物件的基本值。 | Object | ||
檢查此 EventDispatcher 物件是否已註冊事件偵聽程式,或者此物件的任何祖系已為特定事件類型註冊事件偵聽程式。 | EventDispatcher |
建構函式詳細資料
Stroke | () | 建構函式 |
public function Stroke(color:uint = 0x000000, weight:Number = 0, alpha:Number = 1.0, pixelHinting:Boolean = false, scaleMode:String = "normal", caps:String = null, joints:String = null, miterLimit:Number = 1)
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Constructor.
參數color:uint (default = 0x000000 ) — Specifies the line color.
The default value is 0x000000 (black).
| |
weight:Number (default = 0 ) — Specifies the line weight, in pixels.
The default value is 0.
| |
alpha:Number (default = 1.0 ) — Specifies the alpha value in the range 0.0 to 1.0.
The default value is 1.0 (opaque).
| |
pixelHinting:Boolean (default = false ) — Specifies whether to hint strokes to full pixels.
This value affects both the position of anchors of a curve
and the line stroke size itself.
The default value is false.
| |
scaleMode:String (default = "normal ") — A value from the LineScaleMode class
that specifies which scale mode to use.
Valid values are LineScaleMode.HORIZONTAL ,
LineScaleMode.NONE , LineScaleMode.NORMAL ,
and LineScaleMode.VERTICAL .
This parameter is optional,
with a default value of LineScaleMode.NORMAL .
| |
caps:String (default = null ) — Specifies the type of caps at the end of lines.
Valid values are "round" , "square" ,
and "none" .
The default value is null .
| |
joints:String (default = null ) — Specifies the type of joint appearance used at angles.
Valid values are "round" , "miter" ,
and "bevel" .
The default value is null .
| |
miterLimit:Number (default = 1 ) — Indicates the limit at which a miter is cut off.
Valid values range from 1 to 255.
The default value is 1.
|
Tue Jun 12 2018, 03:47 PM Z