Added support for zooming X-Axis on bar graph

This commit is contained in:
Jeremy Rangel
2025-01-16 23:11:52 -08:00
parent 197c9fd3da
commit 249c188f58
9 changed files with 503 additions and 248 deletions

View File

@ -17,6 +17,14 @@
"style": "file:./style-index.css",
"viewScript": "file:./view.js",
"attributes": {
"drillDownAnimation": {
"type": "string",
"default": "none"
},
"enableXZoom": {
"type": "boolean",
"default": false
},
"enableHierarchicalView": {
"type": "boolean",
"default": false
@ -128,6 +136,10 @@
"enableStackedBars": {
"type": "boolean",
"default": false
},
"enableBarPopovers": {
"type": "boolean",
"default": false
}
}
}

View File

@ -1 +1 @@
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'e934cc621b90f4fd2b9c');
<?php return array('dependencies' => array('react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '9fe03dfe50c4ea8c8985');

File diff suppressed because one or more lines are too long