# Highcharts Typescript Support

> Sub-skill of highcharts: TypeScript Support.

- Skill: `vamseeachanta/highcharts-typescript-support` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/highcharts-typescript-support`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/highcharts-typescript-support/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/highcharts-typescript-support

---


# TypeScript Support

## TypeScript Support


```typescript
import * as Highcharts from 'highcharts';

const options: Highcharts.Options = {
  title: {
    text: 'TypeScript Example'
  },
  series: [{
    type: 'line',
    data: [1, 2, 3, 4, 5]
  }]
};

Highcharts.chart('container', options);
```

