new ArrowRightDrawing()
Represents right arrow drawing.
Example
// Create arrow right drawing at point (10, 20).
var arrowRight1 = new StockChartX.ArrowRightDrawing({
point: {x: 10, y: 20}
});
// Create arrow right drawing at record 10 and value 20.0.
var arrowRight2 = new StockChartX.ArrowRightDrawing({
point: {record: 10, value: 20.0}
});
// Create red arrow right drawing at point (10, 20).
var arrowRight3 = new StockChartX.ArrowRightDrawing({
point: {x: 10, y: 20},
theme: {
fill: {
fillColor: '#FF0000'
}
}
});
Extends
Members
-
size :StockChartX.Size
-
Gets/Sets size.
Type:
- Inherited From: