Advertisement
| 04.21.2008 at 12:43PM PDT, ID: 23340814 |
|
[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: 65: 66: 67: 68: |
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.controls.Alert;
import mx.charts.HitData;
[Bindable]
public var pingData:ArrayCollection = new ArrayCollection([
{StationName:"NorthEnd", PingStrength:450, Tester:"Bob", Region:"BTR", timeTick:160},
{StationName:"NorthEnd", PingStrength:750, Tester:"Jeff", Region:"BTR", timeTick:420},
{StationName:"EastEnd", PingStrength:550, Tester:"Bill", Region:"BTR", timeTick:670},
{StationName:"SouthEnd", PingStrength:450, Tester:"Bob", Region:"BTR", timeTick:290},
{StationName:"EastEnd", PingStrength:450, Tester:"Bob", Region:"BTR", timeTick:860},
{StationName:"WestEnd", PingStrength:645, Tester:"Gloria", Region:"BTR", timeTick:670},
{StationName:"EastEnd", PingStrength:450, Tester:"Bob", Region:"BTR", timeTick:120},
{StationName:"Upstairs", PingStrength:600, Tester:"Jane", Region:"GYE", timeTick:680},
{StationName:"Downstairs", PingStrength:300, Tester:"Morris", Region:"GYE", timeTick:950},
{StationName:"Upstairs", PingStrength:500, Tester:"Ted", Region:"GYE", timeTick:876},
{StationName:"Upstairs", PingStrength:250, Tester:"Mary", Region:"GYE", timeTick:330},
{StationName:"Downstairs", PingStrength:700, Tester:"John", Region:"GYE", timeTick:540}
]);
private function regenPlotDataByRegion():void {
Alert.show( "regenPlotDataByRegion: TBD" );
myChart.invalidateSeriesStyles();
}
private function regenPlotDataByStationName():void {
Alert.show( "regenPlotDataByStationName: TBD" );
myChart.invalidateSeriesStyles();
}
private function displayPingInfo(hitData:HitData):String {
return "<I>" + hitData.item.StationName + "</I>: <B>" + hitData.item.PingStrength + "L</B>\n"
+ "Region: " + hitData.item.Region + '\n'
+ "Tester: " + hitData.item.Tester + '\n'
+ "Time: " + hitData.item.timeTick;
}
]]>
</mx:Script>
<mx:VBox>
<mx:Panel title="Plot Chart">
<mx:PlotChart id="myChart" dataProvider="{pingData}" dataTipFunction="displayPingInfo" showDataTips="true">
<mx:series>
<mx:PlotSeries xField="timeTick" yField="PingStrength" displayName="Pings" />
<!-- ??????????? -->
</mx:series>
</mx:PlotChart>
<mx:Legend dataProvider="{myChart}"/>
</mx:Panel>
<mx:HBox x="0" y="0" width="100%" height="100%">
<mx:Button label="Plot by Region" click="regenPlotDataByRegion()" />
<mx:Button label="Plot by StationName" click="regenPlotDataByStationName()" />
</mx:HBox>
</mx:VBox>
</mx:Application>
|
Advertisement