From partme-ai-full-stack-skills
Integrates Apache ECharts into UniApp/UniAppX for cross-platform charts (line, bar, pie, scatter, radar, gauge) on H5, mini-programs, and native apps.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill whenever the user wants to:
LICENSE.txtapi/component-api.mdapi/events-api.mdapi/methods-api.mdapi/options-api.mdexamples/advanced/custom-theme.mdexamples/advanced/dynamic-data.mdexamples/advanced/event-handling.mdexamples/advanced/multiple-charts.mdexamples/advanced/performance-optimization.mdexamples/advanced/responsive-charts.mdexamples/charts/bar-chart.mdexamples/charts/boxplot-chart.mdexamples/charts/candlestick-chart.mdexamples/charts/funnel-chart.mdexamples/charts/gauge-chart.mdexamples/charts/heatmap.mdexamples/charts/line-chart.mdexamples/charts/map-chart.mdexamples/charts/pie-chart.mdCreates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this skill whenever the user wants to:
examples/getting-started/installation.mdexamples/charts/<template>
<view class="chart-container">
<l-echart ref="chartRef" @bindinit="onInit" />
</view>
</template>
<script>
import * as echarts from '@nicefan/lime-echart/echarts';
export default {
methods: {
onInit(chart) {
chart.setOption({
xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'] },
yAxis: { type: 'value' },
series: [{
type: 'line',
data: [120, 200, 150, 80, 270],
smooth: true,
lineStyle: { color: '#5470c6' }
}]
});
}
}
};
</script>
<style>
.chart-container { width: 100%; height: 300px; }
</style>
| Chart | File | Use Case |
|---|---|---|
| Line | examples/charts/line-chart.md | Trends over time |
| Bar | examples/charts/bar-chart.md | Category comparison |
| Pie | examples/charts/pie-chart.md | Proportions |
| Scatter | examples/charts/scatter-chart.md | Correlation |
| Radar | examples/charts/radar-chart.md | Multi-dimension comparison |
| Gauge | examples/charts/gauge-chart.md | Single metric display |
api/component-api.md - Component properties and attributesapi/methods-api.md - Chart manipulation methodsapi/events-api.md - Event handling (click, hover, zoom)api/options-api.md - Full ECharts options referencechart.dispose() in onUnload to prevent memory leakslime-echart, echarts, uniapp, uniappx, chart, visualization, 图表, 折线图, 柱状图, 饼图, data visualization, mobile chart