热门角色不仅是灵感来源,更是你的效率助手。通过精挑细选的角色提示词,你可以快速生成高质量内容、提升创作灵感,并找到最契合你需求的解决方案。让创作更轻松,让价值更直接!
我们根据不同用户需求,持续更新角色库,让你总能找到合适的灵感入口。
本提示词模板专为数据可视化场景设计,能够根据用户提供的数据集智能生成多种类型的图表,包括柱状图、折线图、面积图和饼图。该模板具备强大的数据处理能力和图表定制功能,能够自动识别数据特征并推荐最适合的图表类型,同时支持丰富的自定义选项,如颜色主题、标签设置和尺寸调整。通过分步式工作流程,确保从数据输入到图表输出的每个环节都经过严谨的分析和处理,最终生成专业、美观且易于理解的数据可视化图表。该模板特别适用于数据分析报告、商业仪表盘、学术研究展示等多种应用场景,帮助用户快速将原始数据转化为直观的视觉呈现。
数据结构概述
数据类型识别
数据质量评估
已按需求进行聚合(过滤月份为Q2,按品类求和):
排序(按销售额降序):
推荐图表类型及理由
适用性分析
预期展示效果
图表样式描述
颜色方案说明
标签和标题设置
// ECharts Option(将此 option 绑定到 900x540 的容器)
const categories = ['生鲜','粮油调味','饮料','休闲食品','个护清洁'];
const values = [1750, 1295, 1070, 895, 825];
const colors = ['#FF7A45','#FFB74D','#69C0FF','#95DE64','#FFD666'];
const option = {
backgroundColor: '#FFFFFF',
title: {
text: 'Q2各品类销售额',
left: 'center',
textStyle: { color: '#333', fontSize: 18, fontWeight: 600 }
},
tooltip: {
trigger: 'axis',
axisPointer: { type: 'shadow' },
valueFormatter: (val) => `${val} 万元`
},
grid: { left: 60, right: 20, top: 60, bottom: 60 },
legend: { show: false },
xAxis: {
type: 'category',
name: '品类',
data: categories,
axisLabel: { rotate: 0, color: '#555' },
axisTick: { alignWithLabel: true },
axisLine: { lineStyle: { color: '#E0E0E0' } }
},
yAxis: {
type: 'value',
name: '销售额(万元)',
min: 0,
axisLabel: {
color: '#555',
formatter: (v) => `${Math.round(v)}`
},
splitLine: { lineStyle: { type: 'dashed', color: '#EAEAEA' } },
axisLine: { show: false }
},
series: [{
type: 'bar',
name: 'Q2销售额',
data: values.map((v, i) => ({ value: v, itemStyle: { color: colors[i] } })),
barCategoryGap: '20%',
itemStyle: { borderRadius: [8, 8, 0, 0] },
label: {
show: true,
position: 'top',
color: '#333',
formatter: (p) => `${p.value}`
},
markPoint: {
symbol: 'pin',
symbolSize: 60,
label: {
formatter: '生鲜为核心增长点',
color: '#333',
fontWeight: 'bold'
},
itemStyle: { color: '#FFD666', borderColor: '#FFB74D', borderWidth: 1 },
data: [{ type: 'max', name: '生鲜为核心增长点' }]
}
}]
};
关键数据趋势
重要发现说明
业务意义解读
const option = {
backgroundColor: 'transparent',
title: {
text: '近两周DAU趋势',
left: 'center',
top: 8,
textStyle: { color: '#1f2a44', fontSize: 16, fontWeight: 600 }
},
color: ['#1f78ff', '#8bbdff', '#2b6cb0'],
grid: { left: 56, right: 24, top: 56, bottom: 40 },
legend: {
top: 28,
left: 'center',
data: ['DAU', '新用户'], // 顺序固定
textStyle: { color: '#1f2a44' }
},
tooltip: {
trigger: 'axis',
axisPointer: { type: 'line' },
confine: true,
formatter: function (params) {
const date = params[0].axisValue;
const map = {};
params.forEach(p => { map[p.seriesName] = p.data; });
const f = n => (n == null || isNaN(n)) ? '-' : n.toLocaleString('en-US');
return [
`日期: ${date}`,
`DAU: ${f(map['DAU'])}`,
`新用户: ${f(map['新用户'])}`
].join('<br/>');
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['10-01','10-02','10-03','10-04','10-05','10-06','10-07','10-08','10-09','10-10','10-11','10-12','10-13','10-14'],
axisLine: { lineStyle: { color: '#cfe3ff' } },
axisLabel: { color: '#334155' }
},
yAxis: {
type: 'value',
name: 'DAU',
nameTextStyle: { padding: [0, 0, 0, 8], color: '#334155' },
axisLabel: { color: '#334155' },
splitLine: { show: true, lineStyle: { color: '#e6f0ff' } }
},
series: [
{
name: 'DAU',
type: 'line',
smooth: true,
symbol: 'circle',
symbolSize: 6,
lineStyle: { width: 2 },
data: [12500,12850,13200,11800,11950,14000,15800,16250,16000,15500,14200,14500,15100,15350],
markPoint: {
symbolSize: 56,
label: { show: true, formatter: '{b}', color: '#ffffff', fontWeight: 600 },
data: [
{ name: '预热活动', coord: ['10-06', 14000], value: 14000, symbol: 'diamond', itemStyle: { color: '#1f78ff' } },
{ name: 'v3.2上线', coord: ['10-07', 15800], value: 15800, symbol: 'pin', itemStyle: { color: '#ff6b6b' } }
]
},
markArea: {
itemStyle: { color: 'rgba(31,120,255,0.06)' },
data: [
[{ xAxis: '10-04' }, { xAxis: '10-05' }],
[{ xAxis: '10-11' }, { xAxis: '10-12' }]
]
}
},
{
name: '新用户',
type: 'line',
smooth: true,
symbol: 'circle',
symbolSize: 5,
lineStyle: { width: 2 },
data: [1300,1200,1500,900,920,1600,2200,2100,1800,1700,1100,1150,1400,1450]
},
{
name: '3日均线',
type: 'line',
smooth: true,
symbol: 'none',
lineStyle: { width: 2, type: 'dashed', color: '#2b6cb0' },
data: [null, null, 12850, 12617, 12317, 12583, 13917, 15350, 16017, 15917, 15233, 14733, 14600, 14983],
tooltip: { show: false }
}
]
};
代码示例(可直接运行于浏览器或前端项目中):
<div id="chart" style="width:720px;height:420px;"></div>
<script src="https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js"></script>
<script>
const total = 14900;
const data = [
{ name: '自有商城', value: 4200, selected: true },
{ name: '小程序', value: 3800 },
{ name: '搜索广告', value: 2400 },
{ name: '社交投放', value: 2100 },
{ name: '线下导流', value: 1500 },
{ name: '联名活动', value: 900 }
];
// 确保按占比(值)降序
data.sort((a, b) => b.value - a.value);
const chart = echarts.init(document.getElementById('chart'));
const option = {
backgroundColor: '#ffffff',
color: ['#4E79A7','#F28E2B','#E15759','#76B7B2','#59A14F','#EDC948'],
title: [
{
text: '9月渠道订单占比',
left: 'center',
top: 10,
textStyle: { fontSize: 18, fontWeight: 600, color: '#1f2937' }
},
{
text: '统计周期:2025-09 总订单:14,900',
left: 'center',
top: 36,
textStyle: { fontSize: 12, color: '#6b7280' }
}
],
tooltip: {
trigger: 'item',
formatter: (p) =>
`${p.name}<br/>订单数:${(+p.value).toLocaleString()}<br/>占比:${p.percent.toFixed(1)}%`
},
legend: {
orient: 'vertical',
right: 10,
top: 'middle',
icon: 'circle',
itemWidth: 8,
itemHeight: 8,
textStyle: { fontSize: 12, color: '#374151' }
},
series: [{
type: 'pie',
radius: ['40%','72%'],
center: ['40%','55%'],
startAngle: 90,
clockwise: true,
avoidLabelOverlap: true,
selectedMode: 'single',
selectedOffset: 6,
label: {
show: true,
position: 'outside',
color: '#111827',
formatter: (p) => `${p.percent.toFixed(1)}%`, // 仅显示百分比,1 位小数
fontSize: 12
},
labelLine: {
show: true,
length: 12,
length2: 8
},
emphasis: {
scale: true,
scaleSize: 4
},
data
}],
graphic: {
type: 'group',
left: '40%',
top: '55%',
children: [
{
type: 'text',
style: {
text: '总订单',
x: 0,
y: 0,
textAlign: 'center',
textVerticalAlign: 'middle',
fill: '#6b7280',
fontSize: 14,
fontWeight: 500
}
}
]
}
};
chart.setOption(option);
window.addEventListener('resize', () => chart.resize());
</script>
面向数据分析、业务汇报、运营复盘与学术展示,快速把原始数据转化为“好看、好懂、可信”的图表与洞察;自动识别数据特征并匹配最优图表类型,减少试错与返工;支持品牌化定制(颜色、标签、布局、尺寸),直接生成可投放到报告和仪表盘的成品;以洞察为核心,突出趋势、异常与关键指标,助力讲清业务故事与研究结论;通过规范化流程降低误读与视觉偏差,提升可信度与专业感;促使用户即刻试用,形成高频使用场景,并在需求升级时转为付费以解锁高级主题、批量生成与团队协作等能力。
把表格数据快速转成多种图表,自动标注趋势与异常,缩短周报制作时间,并生成可直接嵌入报告的说明文字。
一键生成渠道对比、用户留存与转化曲线,直观看到占比与变化,用于优化投放与活动复盘,迅速对齐团队。
用品牌色模板生成活动成效图,清晰呈现曝光、点击与转化,支持演示现场展示与分享,提升沟通效率。
将模板生成的提示词复制粘贴到您常用的 Chat 应用(如 ChatGPT、Claude 等),即可直接对话使用,无需额外开发。适合个人快速体验和轻量使用场景。
把提示词模板转化为 API,您的程序可任意修改模板参数,通过接口直接调用,轻松实现自动化与批量处理。适合开发者集成与业务系统嵌入。
在 MCP client 中配置对应的 server 地址,让您的 AI 应用自动调用提示词模板。适合高级用户和团队协作,让提示词在不同 AI 工具间无缝衔接。
免费获取高级提示词-优惠即将到期