メソッド | プロパティ | エフェクト | イベント | スタイル | フレームあり | フレームなし

mx.charts
BubbleChart クラス

継承を示す線継承を示す線継承を示す線継承を示す線


BubbleChart クラス
mx.charts.chartClasses.CartesianChart の拡張

BubbleChart コントロールは、各データポイントにつき 3 つの値でデータを表します。各データポイントは、水平軸に沿った位置を決定する値、垂直軸に沿った位置を決定する値、およびグラフ上の他のデータポイントとの比較でグラフエレメントのサイズを決定する値で定義されます。

BubbleChart コントロールでは、series プロパティに BubbleSeries オブジェクトの配列が含まれている必要があります。

MXML シンタックス

<mx:BubbleChart> タグは、親クラスのすべてのプロパティと、次のプロパティを継承します。

 <mx:BubbleChart
maxRadius="30"
/>

を参照するにはここをクリックしてください

関連項目
    series.BubbleSeries



メソッド

mx.charts.chartClasses.ChartBase クラスから継承されるメソッド
dataTipFunction   findDataPoint  

mx.core.UIComponent クラスから継承されるメソッド
drawFocus   getFocus   getFocusManager   setEnabled   setFocus  

mx.core.UIObject クラスから継承されるメソッド
addEventListener   applyProperties   buildDepthTable   commitProperties   constructObject2   createAccessibilityImplementation   createChildAtDepth   createChildren   createClassChildAtDepth   createClassObject   createEmptyObject   destroyObject   dispatchEvent   doLater   draw   drawRect   executeBindings   fillRect   findNextAvailableDepth   getRepeaterItem   getStyle   handleEvent   init   invalidate   invalidateLayout   invalidateProperties   invalidateSize   invalidateStyle   layoutChildren   measure   move   redraw   removeEventListener   setDepthAbove   setDepthBelow   setMask   setSize   setSizeNoLayout   setStyle   swapDepths  



プロパティ

mx.charts.chartClasses.CartesianChart クラスから継承されるプロパティ
horizontalAxis   horizontalAxisRenderer   verticalAxis   verticalAxisRenderer  

mx.charts.chartClasses.ChartBase クラスから継承されるプロパティ
annotationElements   backgroundElements   clipContent   dataProvider   mouseSensitivity   series   showDataTips  

mx.core.UIComponent クラスから継承されるプロパティ
enabled   errorString   tabEnabled   tabIndex   version  

mx.core.UIObject クラスから継承されるプロパティ
alpha   baselinePosition   className   depth   documentDescriptor   height   heightFlex   id   instanceIndices   isDocument   kStretch   layoutHeight   layoutWidth   maxHeight   maxWidth   minHeight   minWidth   mouseX   mouseY   nestLevel   oldHeight   oldWidth   oldX   oldY   parent   parentApplication   parentDocument   percentHeight   percentWidth   preferredHeight   preferredWidth   repeaterIndices   scaleX   scaleY   styleName   tabEnabled   toolTip   version   visible   width   widthFlex   x   y  



エフェクト

mx.core.UIComponent クラスから継承されるエフェクト
focusInEffect   focusOutEffect  

mx.core.UIObject クラスから継承されるエフェクト
creationCompleteEffect   hideEffect   mouseDownEffect   mouseOutEffect   mouseOverEffect   mouseUpEffect   moveEffect   resizeEffect   showEffect  



イベント

mx.charts.chartClasses.ChartBase クラスから継承されるイベント
mouseClickData  mouseDown  mouseMove  mouseMoveData  mouseOut  mouseOutData  mouseOver  mouseOverData  mouseUp 

mx.core.UIComponent クラスから継承されるイベント
focusIn  focusOut  invalid  keyDown  keyUp  valid  valueCommitted 

mx.core.UIObject クラスから継承されるイベント
creationComplete  dragComplete  dragDrop  dragEnter  dragExit  dragOver  draw  effectEnd  effectStart  hide  hideToolTip  initialize  load  mouseChangeSomewhere  mouseDown  mouseDownSomewhere  mouseMove  mouseMoveSomewhere  mouseOut  mouseOver  mouseUp  mouseUpSomewhere  move  resize  show  showToolTip  unload 



スタイル
maxRadius型 : Number  
最も大きいグラフエレメントの最大半径をピクセル単位で表します。この半径は、値の最も大きいデータポイントに割り当てられます。他のすべてのデータポイントには、最大値に対するそれぞれの値の相対値に基づいて、より小さい半径が割り当てられます。デフォルト値は 30 ピクセルです。

mx.charts.chartClasses.CartesianChart クラスから継承されるスタイル
axisTitleStyle   gutterBottom   gutterLeft   gutterRight   gutterTop   horizontalAxisStyle   verticalAxisStyle  

mx.charts.chartClasses.ChartBase クラスから継承されるスタイル
chartSeriesStyles   fill   marginBottom   marginTop  

mx.core.UIComponent クラスから継承されるスタイル
backgroundAlpha   backgroundColor   backgroundDisabledColor   backgroundImage   backgroundSize   barColor   borderCapColor   borderColor   borderSides   borderStyle   borderThickness   cornerRadius   disabledColor   dropShadow   errorColor   fillColors   highlightColor   modalTransparency   scrollTrackColor   selectedFillColors   shadowCapColor   shadowColor   shadowDirection   shadowDistance   symbolBackgroundColor   symbolBackgroundDisabledColor   symbolBackgroundPressedColor   symbolColor   symbolDisabledColor   themeColor  

mx.core.UIObject クラスから継承されるスタイル
color   fontFamily   fontSize   fontStyle   fontWeight   horizontalGap   leading   marginLeft   marginRight   textAlign   textDecoration   textIndent   verticalGap  



プロパティの詳細

BubbleChartExample.mxml
<?xml version="1.0"?>
<!-- バブルチャートの使用方法を示す簡単な例 -->
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" backgroundColor="#FFFFFF">

<mx:Script>
<![CDATA[

var expenses = [{Month:"Jan", Profit:2000, Expenses:1500, Amount: 450},
{Month:"Feb", Profit:1000, Expenses:200, Amount: 600},
{Month:"Mar", Profit:1500, Expenses:500, Amount: 300}
                         ]

    ]]>
</mx:Script>

<mx:Panel title="Bubble Chart Panel" height="100%" width="100%">

<mx:Style>
            
@font-face
                {
src:local("Arial");
font-family:labelFont;
font-style:italic;
font-weight:bold;
                }
BubbleChart
                {
font-family:labelFont;
color:#000099;
                }

</mx:Style>


<mx:BubbleChart id="bubblechart" axisTitleStyle="labelFont" marginLeft="5" height="100%" width="100%"
marginRight="5" dataProvider="{expenses}" showDataTips="true" maxRadius="20">

<mx:horizontalAxisRenderer>
<mx:AxisRenderer title="Profit"/>
</mx:horizontalAxisRenderer>

<mx:verticalAxisRenderer>
<mx:AxisRenderer title="Expenses"/>
</mx:verticalAxisRenderer>

<mx:series>
<mx:Array>
<mx:BubbleSeries name="Profit/Expenses/Amount" xField="Profit" yField="Expenses" radiusField="Amount"/>
</mx:Array>
</mx:series>
            
</mx:BubbleChart>
<mx:Legend dataProvider="bubblechart"/>

</mx:Panel>

</mx:Application>