flex 그래프 이벤트 데이터 가져오기
import mx.charts.events.ChartItemEvent; import mx.charts.series.items.ColumnSeriesItem;
private function setMousedata(event:ChartItem Event):void {var can:HLOCSeries Item=event.hitData.chartitem as HLOCSeries Item;//다른 도표로 해당하는 대상 showdata Label.text=can.item.open+"can.item.close; }
그리고 도표에 itemMouseMove 이벤트를 추가합니다.
<mx:Label id="showdataLabel" /></mx:Box>
<mx:CandlestickChart id="candlestickchart"
height="100%" itemMouseMove="setMousedata(event)"
width="100%"
paddingRight="5"
paddingLeft="5"
mouseMove="dropHandler(event)"
dataProvider="{TICKER}"
>
<mx:verticalAxis>
<mx:LinearAxis id="vaxis" baseAtZero="false" title="Price"/>
</mx:verticalAxis>
<mx:horizontalAxis>
<mx:CategoryAxis id="haxis" categoryField="Date" title="Date"/>
</mx:horizontalAxis>
<mx:horizontalAxisRenderers>
<mx:AxisRenderer axis="{haxis}" canDropLabels="true"/>
</mx:horizontalAxisRenderers>
<mx:series>
<mx:CandlestickSeries
openField="open"
highField="high"
lowField="low"
closeField="close"
fill="{up}"
declineFill="{down}"
stroke="{wick}"
boxStroke="{box}"
/>
</mx:series>
</mx:CandlestickChart>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
⭐️ Flex & OpacityThe flex CSS shorthand property sets how a flex item will grow or shrink to fit the space available in its flex containe...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.