mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
68 lines
2.1 KiB
Markdown
68 lines
2.1 KiB
Markdown
---
|
|
title: Visualization Plugins Overview
|
|
sidebar_position: 1
|
|
---
|
|
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
# Visualization Plugins Overview
|
|
|
|
🚧 **Coming Soon** 🚧
|
|
|
|
Learn how to create custom visualization plugins to extend Superset's charting capabilities with new chart types and data representations.
|
|
|
|
## Topics to be covered:
|
|
|
|
- Visualization plugin architecture
|
|
- Chart component development
|
|
- Data transformation and processing
|
|
- Control panel configuration
|
|
- Chart rendering lifecycle
|
|
- Interactive features and event handling
|
|
- Performance optimization for large datasets
|
|
- Chart theming and customization
|
|
- Export and sharing capabilities
|
|
- Plugin packaging and distribution
|
|
|
|
## Plugin Components
|
|
|
|
### Core Components
|
|
- **Chart Component** - Main visualization renderer
|
|
- **Control Panel** - Configuration interface
|
|
- **Transform Props** - Data processing logic
|
|
- **Metadata** - Plugin registration and configuration
|
|
|
|
### Optional Components
|
|
- **Thumbnail** - Chart preview image
|
|
- **Build Query** - Custom query generation
|
|
- **Control Panel Sections** - Advanced configuration grouping
|
|
|
|
## Supported Chart Libraries
|
|
|
|
- **D3.js** - Custom SVG-based visualizations
|
|
- **ECharts** - Rich interactive charts
|
|
- **Deck.gl** - Geospatial and 3D visualizations
|
|
- **React** - Custom React-based components
|
|
- **Canvas/WebGL** - High-performance rendering
|
|
|
|
---
|
|
|
|
*This documentation is under active development. Check back soon for updates!*
|