blob: 2cc578b37105c774f27de2aea6d2b0c24931c8c2 [file] [log] [blame]
{ "type": "class",
"qname": "mx.charts.effects.effectClasses.SeriesEffectInstance",
"baseClassname": "mx.effects.effectClasses.TweenEffectInstance"
,
"description": "The SeriesEffectInstance class implements the base instance class for the chart series effects.",
"tags": [
{ "tagName": "see",
"values": ["mx.charts.effects.SeriesEffect"]},
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]},
{ "tagName": "royalesuppresspublicvarwarning",
"values": []} ],
"members": [
{ "type": "method",
"qname": "mx.charts.effects.effectClasses.SeriesEffectInstance",
"namespace": "",
"bindable": [],
"details": [],
"deprecated": {},
"description": "Constructor.",
"tags": [
{ "tagName": "param",
"values": ["target The target of the effect."]},
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ],
"return": "",
"params": [{ "name": "target", "type": "Object"}]}
,
{ "type": "field",
"qname": "targetSeries",
"return": "mx.charts.chartClasses.Series",
"namespace": "protected",
"bindable": [],
"details": [],
"deprecated": {},
"description": "The series targeted by this instance.",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "field",
"qname": "interpolationValues",
"return": "Array",
"namespace": "protected",
"bindable": [],
"details": [],
"deprecated": {},
"description": "The current position of each chart item being managed by this effect. This is an array of values between 0 and 1 indicating how far the effect should render each item in the series between its starting and ending values. These values are calculated based on the duration, number of elements, element offset, minimum element duration, and easing function.",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "field",
"qname": "elementOffset",
"return": "Number",
"namespace": "public",
"bindable": [],
"details": [],
"deprecated": {},
"description": "Specifies the amount of time, in milliseconds, that Flex delays the start of the effect on each element in the series. <p>Set <code>elementOffset</code> to <code>0</code> to affect all elements of the series at the same time. They start the effect at the same time and end it at the same time.</p> <p>Set <code>elementOffset</code> to a positive integer (such as <code>30</code>) to stagger the effect on each element by that amount of time. For example, with a slide effect, the first element slides in immediately, then the next element begins 30 milliseconds later, and so on. The amount of time for the effect to execute is the same for each element, but the overall duration of the effect is longer.</p> <p>Set <code>elementOffset</code> to a negative value to have the effect begin from the last element and move backwards through the list.</p> <p>The default is <code>20</code>.</p>",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "field",
"qname": "minimumElementDuration",
"return": "Number",
"namespace": "public",
"bindable": [],
"details": [],
"deprecated": {},
"description": "Specifies the amount of time, in milliseconds, that an individual element should take to complete the effect. <p>Charts with a variable number of data points in the series cannot reliably create smooth effects with only the <code>duration</code> property. For example, an effect with a <code>duration</code> of <code>1000</code> and an <code>elementOffset</code> of <code>100</code> takes 900 milliseconds per element to complete an effect if you have two elements in the series. This is because the start of each effect is offset by 100 and each effect finishes in 1000 milliseconds.</p> <p>If there are four elements in the series, each element takes 700 milliseconds to complete (the last effect starts 300 milliseconds after the first and must be completed within 1000 milliseconds). With 10 elements, each element has only 100 milliseconds</p> to complete the effect. <p>The <code>minimumElementDuration</code> value sets a minimal duration for each element. No element of the series takes less than this amount of time (in milliseconds) to execute the effect, regardless of the number of elements in the series and the value of the <code>duration</code> property. As a result, it is possible for an effect to take longer than a specified <code>duration</code> if at least two of the following three properties are specified: <code>duration</code>, <code>offset</code>, and <code>minimumElementDuration</code>.</p> <p>The default is <code>0</code>.</p>",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "field",
"qname": "offset",
"return": "Number",
"namespace": "public",
"bindable": [],
"details": [],
"deprecated": {},
"description": "Specifies the amount of time, in milliseconds, that Flex delays the effect. <p>Use this property to stagger effects on multiple series.</p> <p>The default is <code>0</code>.</p>",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "field",
"qname": "type",
"return": "String",
"namespace": "public",
"bindable": [],
"details": [],
"deprecated": {},
"description": "The type of transition this effect is being used for. Some series effects define different behavior based on whether they are being used during the show or hide portion of a chart transition. The SeriesSlide effect, for example, slides elements from their position off screen when type is set to <code>hide</code>, and on screen when set to <code>show</code>. This property is set automatically by the chart, based on whether the effect is assigned to the ShowDataEffect or HideDataEffect style.",
"tags": [
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ]},
{ "type": "method",
"qname": "beginTween",
"namespace": "protected",
"bindable": [],
"details": [],
"deprecated": {},
"description": "Initializes the tweening calculations and sets up the <code>interpolationValues</code> Array for the number of items equal to the <code>elementCount</code> property. Derived classes should call this function in their <code>play()</code> method.",
"tags": [
{ "tagName": "param",
"values": ["elementCount The number of elements to generate interpolation values for."]},
{ "tagName": "playerversion",
"values": ["Flash 9", "AIR 1.1"]},
{ "tagName": "productversion",
"values": ["Flex 3"]},
{ "tagName": "langversion",
"values": ["3.0"]} ],
"return": "void",
"params": [{ "name": "elementCount", "type": "int"}]}
]
}