You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the above example, we are using the `duration`/`delay`/`easing`/`oneByOne` configuration introduced in our previous chapter ([Animation Types](./Animation_Types)) to achieve simple animation effects.
105
+
In the above example, we are using the `duration`/`delay`/`easing`/`oneByOne` configuration introduced in our previous chapter ([Animation Types](./defination-of-animtion)) to achieve simple animation effects.
106
106
107
107
The animation configuration for graphic elements supports multiple properties for detailed control of the animation behavior. Here are the supported attributes for the graphic animation configuration:
108
108
@@ -594,4 +594,89 @@ VChart provides animation arrangement configuration based on JSON spec to meet a
594
594
595
595
A timeline represents the animation performance of a graphic element over a specific period of time. A timeline contains a set of serialized animation fragments (TimeSlice). The timeline describes the animation performance of a graphic element over a period of time. Animations in different timelines can be executed in parallel. The timeline can also be set with `loop: true` to loop the configured animation effects.
In a timeline, each time slice is executed serially, and the constituent elements in a time slice include:
602
+
-`effect`: The specific execution effect of the animation, which describes the specific interpolation calculation logic of the visual channel attributes of the primitive. Effects can be encapsulated specific animation effects, or animation configurations configured by developers to start and end states, and describe the calculation logic of animation attribute interpolation. Each timeSlice can be configured with multiple `effect`;
603
+
-`duration`: the execution duration of animation slices;
604
+
-`delay`: the waiting time before the execution of the animation slice;
605
+
606
+
### Animation Effect (Effect)
607
+
The constituent elements in animation effects (Effect) include:
608
+
-`channel`: the changed visual channel attribute, which describes the visual channel attribute when the interpolation calculation starts and ends;
609
+
-`easing`: easing strategy for difference calculation;
610
+
611
+
The following example achieves an accordion effect by animating a looping timeline:
In the animation effect (Effect), if the simple `channel` configuration cannot meet your needs, you can configure custom animation effects through `custom` and `customParameters`:
680
+
-`custom`: custom animation;
681
+
-`customParameters`: Custom animation parameters;
682
+
For detailed usage, please refer to the [Custom Animation](../custom-extension/custom-animation) chapter.
Copy file name to clipboardexpand all lines: docs/assets/tutorials/en/animation/how-to-config-animation.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ window['vchart'] = vchart;
63
63
64
64
### Animation Easing Effect
65
65
66
-
Easing effects describe the process of "acceleration" of the animation. Setting the appropriate easing effect can make the chart animation more dynamic. VChart has many built-in easing effect types that can be selected through the `animation.easing` property. The default value is `cubicOut`. The following built-in easing effect types are available, and you can refer to the [easing demo](../../../demo/combination/easing-visualization) for more information.
66
+
Easing effects describe the process of "acceleration" of the animation. Setting the appropriate easing effect can make the chart animation more dynamic. VChart has many built-in easing effect types that can be selected through the `animation.easing` property. The default value is `cubicOut`. The following built-in easing effect types are available, and you can refer to the [easing demo](../../demo/combination/easing-visualization) for more information.
Copy file name to clipboardexpand all lines: docs/assets/tutorials/en/chart/3d-area.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ Point elements and line elements are the basic components of an area chart, and
21
21
22
22
Axes, tooltips, and other components that assist in chart display are optional configurations with default effects and functions:
23
23
24
-
-`areaChart.axes`: Axis component, default is to display and automatically infer the coordinate system and data mapping logic according to the chart type. For detailed configuration, see [VChart Axis Component Configuration](../../../option/areaChart#axes)
25
-
-`areaChart.tooltip`: Tooltip, default is displayed during interaction. For detailed configuration, see [VChart Tooltip Component Configuration](../../../option/areaChart#tooltip)
26
-
- For more component configurations, see [VChart areaChart Configuration](../../../option/areaChart)
24
+
-`areaChart.axes`: Axis component, default is to display and automatically infer the coordinate system and data mapping logic according to the chart type. For detailed configuration, see [VChart Axis Component Configuration](../../option/areaChart#axes)
25
+
-`areaChart.tooltip`: Tooltip, default is displayed during interaction. For detailed configuration, see [VChart Tooltip Component Configuration](../../option/areaChart#tooltip)
26
+
- For more component configurations, see [VChart areaChart Configuration](../../option/areaChart)
27
27
28
28
As a 3d chart, the 3d area chart requires enabling the 3d view. Configure the 3d view in the vChart initialization parameters:
Copy file name to clipboardexpand all lines: docs/assets/tutorials/en/chart/3d-bar.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ The rectangular chart element is an essential building block for bar/column char
24
24
25
25
Axes, tooltips, and other components, which serve as auxiliary chart display components, are optional configurations with default effects and functionality:
26
26
27
-
-`barChart.axes`: Axis component, displayed by default and automatically inferring coordinate system and data mapping logic based on chart type. For detailed configurations, see [VChart Axis Component Configuration](../../../option/barChart#axes)
28
-
-`barChart.tooltip`: Tooltip information, displayed by default during interaction, for detailed configurations, see [VChart Tooltip Component Configuration](../../../option/barChart#tooltip)
29
-
- For more component configurations, see [VChart barChart Configuration](../../../option/barChart)
27
+
-`barChart.axes`: Axis component, displayed by default and automatically inferring coordinate system and data mapping logic based on chart type. For detailed configurations, see [VChart Axis Component Configuration](../../option/barChart#axes)
28
+
-`barChart.tooltip`: Tooltip information, displayed by default during interaction, for detailed configurations, see [VChart Tooltip Component Configuration](../../option/barChart#tooltip)
29
+
- For more component configurations, see [VChart barChart Configuration](../../option/barChart)
30
30
As a 3D chart, 3D scatter plot needs to enable 3D view, which needs to be configured in the initialization parameters of vChart:
Copy file name to clipboardexpand all lines: docs/assets/tutorials/en/chart/3d-funnel.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ Transformation layers, labels, and other auxiliary elements are only displayed i
24
24
25
25
Tooltip information and other components that assist in chart presentation are optional configurations that come with default effects and functions:
26
26
27
-
-`funnelChart.tooltip`: Tooltip information, displayed by default during interaction, for detailed configuration see [VChart Tooltip Component Configuration](../../../option/funnelChart#tooltip)
28
-
- For more component configurations, see [VChart funnelChart Configuration](../../../option/funnelChart)
27
+
-`funnelChart.tooltip`: Tooltip information, displayed by default during interaction, for detailed configuration see [VChart Tooltip Component Configuration](../../option/funnelChart#tooltip)
28
+
- For more component configurations, see [VChart funnelChart Configuration](../../option/funnelChart)
29
29
30
30
As a 3D chart, a 3D scatter plot requires enabling the 3D view, which needs to be configured in the initialization parameters of vChart:
31
31
@@ -100,4 +100,4 @@ const vchart = new VChart(spec, {
100
100
vchart.renderAsync();
101
101
```
102
102
103
-
For other configurations, refer to [Funnel Chart](../../../option/funnelChart)
103
+
For other configurations, refer to [Funnel Chart](../../option/funnelChart)
Area charts visually display quantitative data. It is based on line charts. Areas between the axis and the line are often emphasized with colors, textures, and shading lines. Typically, an area chart compares two or more quantities. Area charts are suitable for illustrating the trend changes of one or more groups of data under continuous independent variables, as well as comparing them with each other, while also being able to observe the changing trend of the total data.
8
8
9
-
In VChart, you can use the [area chart configuration](../../../option/areaChart) to display the changing trends of both data components and total data simultaneously. As shown below, this example shows the trend of sales of different cosmetics:
9
+
In VChart, you can use the [area chart configuration](../../option/areaChart) to display the changing trends of both data components and total data simultaneously. As shown below, this example shows the trend of sales of different cosmetics:
In the [area chart example](../../../demo/area-chart/stacked-area) shown above, you need to use the following key configurations:
13
+
In the [area chart example](../../demo/area-chart/stacked-area) shown above, you need to use the following key configurations:
14
14
15
15
-`seriesField` attribute is used to declare the field participating in color mapping
16
16
-`stack` attribute is declared as true for configuring stacking, which will be stacked according to the field declared in the `seriesField` attribute
@@ -29,9 +29,9 @@ Point elements and line elements are essential for area charts, and relevant dra
29
29
30
30
Axes, tooltips, and other auxiliary chart display components are optional configurations with default effects and functionalities:
31
31
32
-
-`areaChart.axes`: Axis components, automatically displayed and inferred according to chart type with coordinate system and data mapping logic, for detailed configuration see [VChart Axis Component Configuration](../../../option/areaChart#axes)
33
-
-`areaChart.tooltip`: Tooltip information, displayed interactively by default, for detailed configuration see [VChart Tooltip Configuration](../../../option/areaChart#tooltip)
34
-
- For more component configurations see [VChart areaChart configuration](../../../option/areaChart)
32
+
-`areaChart.axes`: Axis components, automatically displayed and inferred according to chart type with coordinate system and data mapping logic, for detailed configuration see [VChart Axis Component Configuration](../../option/areaChart#axes)
33
+
-`areaChart.tooltip`: Tooltip information, displayed interactively by default, for detailed configuration see [VChart Tooltip Configuration](../../option/areaChart#tooltip)
34
+
- For more component configurations see [VChart areaChart configuration](../../option/areaChart)
A bar chart is a statistical chart with a variable based on the length of a rectangle. Bar charts are used to compare two or more values (different times or different conditions), with only one variable, and are often used for smaller data set analysis.
8
8
9
-
In VChart, you can display data values for multiple groups through the [Bar Chart Configuration](../../../option/barChart). As shown in the following figure:
9
+
In VChart, you can display data values for multiple groups through the [Bar Chart Configuration](../../option/barChart). As shown in the following figure:
To achieve a [Population Pyramid Chart](../../../demo/bar-chart/population-pyramid) as shown above, you need to use a combination of chart + bar series + layout with the following configurations:
22
+
To achieve a [Population Pyramid Chart](../../demo/bar-chart/population-pyramid) as shown above, you need to use a combination of chart + bar series + layout with the following configurations:
23
23
24
24
- Grid layout, configured through the `layout` property, used for bar chart layout.
25
25
- Use the `type: common` type, i.e., the combination chart.
@@ -39,9 +39,9 @@ Rectangle elements are the basic elements of bar charts/bar graphs, and the corr
39
39
40
40
Coordinate axis, prompt information, and other components are optional configurations for assisting in chart presentation and come with default effects and functions:
41
41
42
-
-`barChart.axes`: coordinate axis component, default displayed, and automatically infer coordinate system and data mapping logic based on chart type, detailed configuration see [VChart Coordinate Axis Component Configuration](../../../option/barChart#axes)
- More component configurations see [VChart barChart configuration](../../../option/barChart)
42
+
-`barChart.axes`: coordinate axis component, default displayed, and automatically infer coordinate system and data mapping logic based on chart type, detailed configuration see [VChart Coordinate Axis Component Configuration](../../option/barChart#axes)
0 commit comments