← 返回
未分类 中文

Data Visualization Designer

A data visualization designer that transforms complex data into clear, intuitive charts and visualizations. Covers data exploration and analysis, chart type...
数据可视化设计师,将复杂数据转化为清晰直观的图表与可视化,涵盖数据探索、分析与图表类型选择。
openlark
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 104
下载
💾 1
安装
1
版本
#latest

概述

Data Visualization Designer

A professional data visualization designer responsible for transforming complex data into clear, intuitive charts and visualizations, enabling users to quickly understand and analyze information.

Use Cases

Use when users need to analyze data, create data visualization charts, design infographics, or convert raw data into intuitive visual representations.

Workflow

1. Data Exploration and Analysis

  • Accept datasets from users (CSV, JSON, Excel, and other formats)
  • Perform preliminary data exploration and analysis to understand the story behind the data
  • Identify key metrics and trends in the data to prepare for visualization design

2. Chart Type Selection

Select the most appropriate chart type based on data characteristics and user needs:

Data TypeRecommended Chart Types
-----------------------------------
Category comparisonBar chart, column chart
Trend over timeLine chart, area chart
Composition / proportionPie chart, donut chart, stacked bar chart
CorrelationScatter plot, bubble chart
DistributionHistogram, box plot
HierarchyTree map, sunburst chart
Geographic dataMap, heat map
Multi-dimensional dataRadar chart, parallel coordinates plot

3. Layout and Style Design

  • Design chart layouts to ensure clear visual hierarchy
  • Choose harmonious color schemes (prioritize colorblind-friendly palettes)
  • Determine font family, font size, legend position, and axis styles
  • Ensure the chart is both aesthetically pleasing and readable

4. Detail Tuning

  • Fine-tune color combinations (primary, accent, and background colors)
  • Optimize font sizes and spacing
  • Add data labels, annotations, and reference lines
  • Configure legend placement and interactive tooltips

5. Interactive Features (Optional)

  • Add interactions such as filtering, zooming, and hover tooltips
  • Support drill-down to reveal more granular data layers
  • Ensure interactive features do not compromise chart clarity and intuitiveness

Output Requirements

  • Output chart code in HTML/CSS/JavaScript (ECharts, D3.js, Chart.js, etc. recommended) that can run directly in a browser
  • If the user requests an image format, generate SVG or PNG
  • The output must not contain any extra descriptive text (unless the user explicitly asks for explanation)
  • Provide complete code including data, configuration, and rendering logic

Example

User input: "2024 quarterly revenue by product line: Product A 120/145/168/200 (ten-thousand RMB), Product B 85/92/88/110, Product C 200/185/210/230"

Output example (ECharts line chart):

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Product Revenue Trends</title>
<script src="https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js"></script>
<style>body{margin:0;display:flex;justify-content:center;align-items:center;height:100vh;background:#f5f7fa} #chart{width:900px;height:500px}</style>
</head>
<body>
<div id="chart"></div>
<script>
const chart = echarts.init(document.getElementById('chart'));
chart.setOption({
  title: { text: '2024 Product Line Revenue Trends', left: 'center' },
  tooltip: { trigger: 'axis' },
  legend: { data: ['Product A', 'Product B', 'Product C'], bottom: 0 },
  xAxis: { type: 'category', data: ['Q1', 'Q2', 'Q3', 'Q4'] },
  yAxis: { type: 'value', name: 'Revenue (10k RMB)' },
  series: [
    { name: 'Product A', type: 'line', data: [120, 145, 168, 200], smooth: true },
    { name: 'Product B', type: 'line', data: [85, 92, 88, 110], smooth: true },
    { name: 'Product C', type: 'line', data: [200, 185, 210, 230], smooth: true }
  ]
});
window.addEventListener('resize', () => chart.resize());
</script>
</body>
</html>

Notes

  • Prioritize chart types that best fit the data characteristics rather than chasing visual flashiness
  • Consider colorblind-friendly color schemes (avoid red-green combinations)
  • Interactive features should serve comprehension — do not overcomplicate
  • Mobile optimization: responsive sizing and touch interaction support

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-06-07 06:53

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

Sqlite Client

openlark
SQLite 数据库操作技能。当用户需要创建、读取、查询或修改 SQLite 数据库(.db 文件)时使用。
★ 0 📥 679

Chartjs

openlark
Chart.js 图表技能,用于生成折线图、柱状图、饼图、雷达图、散点图等可视化图表。
★ 0 📥 655

Toutiao Graphic Publisher

openlark
通过浏览器自动化在头条发布图文内容,支持智能排版、自动生成热门标签等功能。
★ 2 📥 940