# Plotly HTML Recommended For Reports

> Sub-skill of plotly: HTML (Recommended for Reports) (+2).

- Skill: `vamseeachanta/plotly-html-recommended-for-reports` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/plotly-html-recommended-for-reports`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/plotly-html-recommended-for-reports/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/plotly-html-recommended-for-reports

---


# HTML (Recommended for Reports) (+2)

## HTML (Recommended for Reports)


```python
fig.write_html('report.html', include_plotlyjs='cdn')
```

## Static Images


```python
# Requires kaleido
fig.write_image('chart.png', width=1200, height=800)
fig.write_image('chart.pdf')
fig.write_image('chart.svg')
```

## JSON


```python
import json
fig.write_json('chart.json')
```

