Skip to content

Commit 33e1d65

Browse files
committed
scripts
1 parent 9ef0fa9 commit 33e1d65

3 files changed

Lines changed: 0 additions & 36 deletions

File tree

docs/pages/x/api/charts/funnel-chart.json

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@
2929
"gap": { "type": { "name": "number" }, "default": "0" },
3030
"height": { "type": { "name": "number" } },
3131
"hideLegend": { "type": { "name": "bool" }, "default": "false" },
32-
"highlightedAxis": {
33-
"type": {
34-
"name": "shape",
35-
"description": "{ axisId: number<br>&#124;&nbsp;string, dataIndex: number }"
36-
}
37-
},
3832
"highlightedItem": {
3933
"type": {
4034
"name": "shape",
@@ -57,13 +51,6 @@
5751
"describedArgs": ["event", "data"]
5852
}
5953
},
60-
"onAxisInteraction": {
61-
"type": { "name": "func" },
62-
"signature": {
63-
"type": "function(newAxisItems: Array<AxisItemIdentifier>) => void",
64-
"describedArgs": ["newAxisItems"]
65-
}
66-
},
6754
"onHighlightChange": {
6855
"type": { "name": "func" },
6956
"signature": {

docs/translations/api-docs/charts/funnel-chart/funnel-chart.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
"description": "The height of the chart in px. If not defined, it takes the height of the parent element."
1616
},
1717
"hideLegend": { "description": "If <code>true</code>, the legend is not rendered." },
18-
"highlightedAxis": {
19-
"description": "The controlled axis highlighted. Indicates the direction, axis id, and data index to highlight."
20-
},
2118
"highlightedItem": {
2219
"description": "The highlighted item. Used when the highlight is controlled."
2320
},
@@ -36,10 +33,6 @@
3633
"data": "The data about the clicked axis and items associated with it."
3734
}
3835
},
39-
"onAxisInteraction": {
40-
"description": "The function called when the pointer position corresponds to a new axis data item. This update can either be caused by a pointer movement, or an axis update. In case of multiple axes, the function get called if at least ones axis is updated. And the parameter contains the identifier for all axes with a <code>data</code> property.",
41-
"typeDescriptions": { "newAxisItems": "The array of axes item identifiers." }
42-
},
4336
"onHighlightChange": {
4437
"description": "The callback fired when the highlighted item changes.",
4538
"typeDescriptions": { "highlightedItem": "The newly highlighted item." }

packages/x-charts-pro/src/FunnelChart/FunnelChart.tsx

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,6 @@ FunnelChart.propTypes = {
245245
* @default false
246246
*/
247247
hideLegend: PropTypes.bool,
248-
/**
249-
* The controlled axis highlighted.
250-
* Indicates the direction, axis id, and data index to highlight.
251-
*/
252-
highlightedAxis: PropTypes.shape({
253-
axisId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
254-
dataIndex: PropTypes.number.isRequired,
255-
}),
256248
/**
257249
* The highlighted item.
258250
* Used when the highlight is controlled.
@@ -297,14 +289,6 @@ FunnelChart.propTypes = {
297289
* @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
298290
*/
299291
onAxisClick: PropTypes.func,
300-
/**
301-
* The function called when the pointer position corresponds to a new axis data item.
302-
* This update can either be caused by a pointer movement, or an axis update.
303-
* In case of multiple axes, the function get called if at least ones axis is updated.
304-
* And the parameter contains the identifier for all axes with a `data` property.
305-
* @param {AxisItemIdentifier[]} newAxisItems The array of axes item identifiers.
306-
*/
307-
onAxisInteraction: PropTypes.func,
308292
/**
309293
* The callback fired when the highlighted item changes.
310294
*

0 commit comments

Comments
 (0)