|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: |
[Bindable]
var selectedChartData:Object = new Object();
private function handleChange(event:Event):void {
selectedChartData = plotchart3.selectedChartItem;
Alert.show(selectedChartData.index); //this shows the appropriate index
}
private function myStyleFunction(data:Object, col:AdvancedDataGridColumn):Object {
if (data.rowIndex == selectedChartData.index)
return {color:0xFF0000, fontWeight:'bold'};
return null;
}
<mx:PlotChart id="plotchart3"
height="100%"
width="382"
selectionMode="single"
change="handleChange(event)">
<mx:horizontalAxis>
<mx:LinearAxis title="Year"
minimum="1955"
maximum="1985"/>
</mx:horizontalAxis>
<mx:verticalAxis>
<mx:LinearAxis title="Total Time"/>
</mx:verticalAxis>
<mx:series>
<mx:PlotSeries displayName="Total Time"
dataProvider="{newSelectedItemsAC}"
id="series2"
xField="Year"
yField="Total_Time"
itemRenderer="mx.charts.renderers.CircleItemRenderer"
radius="3"/>
</mx:series>
</mx:PlotChart>
<mx:AdvancedDataGrid id="graph1_AC"
dataProvider="{newSelectedItemsAC}"
designViewDataType="flat"
width="381"
height="100%"
itemClick="itemClickEvent(event);"
styleFunction="myStyleFunction">
<mx:columns>
<mx:AdvancedDataGridColumn dataField="Year"
headerText="Year"/>
<mx:AdvancedDataGridColumn dataField="Town"
headerText="Town"/>
<mx:AdvancedDataGridColumn dataField="Field"
headerText="Field"/>
<!--mx:AdvancedDataGridColumn dataField="OCR_Elem_count" headerText="Elem Count"/>
<mx:AdvancedDataGridColumn dataField="OCR_Accuracy" headerText="OCR Accuracy"/>
<mx:AdvancedDataGridColumn dataField="OCR_Elem_Accuracy" headerText="Elem Accuracy"/-->
<mx:AdvancedDataGridColumn dataField="Total_Time"
headerText="Total Time"/>
</mx:columns>
</mx:AdvancedDataGrid>
|
Advertisement
| Hall of Fame |
There are currently no qualifying experts in Flex
There are currently no qualifying experts in Flex