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
2. Only return JSON that can be used to recreate the chart
13
-
3. If the image is a composite chart, return the type as 'common'. All data for composite charts must be returned through the series field, not placed in the top-level data field
14
-
4. If all series in a composite chart are unidirectional bar charts, return the type as 'bar'; if the image is symmetrically distributed on both sides, must return the type as 'bidirectionalBar'
15
-
5. You should pay attention to distinguish radar chart and rose chart
16
-
6. If the type is treemap, the background color of each block needs to be used as the group value
13
+
3. If this is a bar chart (type is 'bar'), with dashed lines connecting each bar, and different colors between bars indicating increase or decrease relationships, then the type should be returned as 'waterfall'.If the bars are arranged horizontally, return transpose as true.
14
+
4. If the chart is a bar chart (type is 'bar') and the starting points of each bar are not aligned (i.e., not starting from 0), then each bar needs to return the corresponding starting and ending values, which are 'value' and 'value1' respectively.
15
+
5. If the image is a composite chart, return the type as 'common'. All data for composite charts must be returned through the series field, not placed in the top-level data field
16
+
6. If all series in a composite chart are unidirectional bar charts, return the type as 'bar'; if the image is symmetrically distributed on both sides, must return the type as 'bidirectionalBar'
17
+
7. You should pay attention to distinguish radar chart and rose chart
18
+
8. If the type is treemap, the background color of each block needs to be used as the group value
19
+
9. For the type property of each element object in the axes field, it must be 'band' or 'linear'
0 commit comments