This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch viz-gallery-tag-reduction
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/viz-gallery-tag-reduction by
this push:
new 1814feda62 scraper script 2.0
1814feda62 is described below
commit 1814feda62894c96d6e198f5c8e70c0167a43bcb
Author: Evan Rusackas <[email protected]>
AuthorDate: Fri Jul 12 13:57:46 2024 -0600
scraper script 2.0
---
.../plugins/legacy-plugin-chart-calendar/src/index.js | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git
a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
index 926d98421d..392066b2a5 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
+++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
+import { t, ChartMetadata, ChartPlugin, Tags } from '@superset-ui/core';
import transformProps from './transformProps';
import example from './images/example.jpg';
import controlPanel from './controlPanel';
@@ -31,12 +31,10 @@ const metadata = new ChartMetadata({
exampleGallery: [{ url: example }],
name: t('Calendar Heatmap'),
tags: [
- t('Business'),
- t('Comparison'),
- t('Intensity'),
- t('Pattern'),
- t('Report'),
- t('Trend'),
+ Tags.ConditionalColoring, // I would consider a heatmap to be conditional
coloring by default.
+ Tags.Legacy,
+ // Library is https://cal-heatmap.com, which is unique, so we won't tag it.
+ // Tags.CrossFiltering // This receives cross-filters, but does not emit
them.
],
thumbnail,
useLegacyApi: true,