Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
U

unovis

> 前端框架
Open source

Modular data visualization framework for React, Angular, Svelte, Vue, and vanilla TypeScript or JavaScript

2.8K stars0 likes0 views
WebsiteGitHub

About

Modular data visualization framework for React, Angular, Svelte, Vue, and vanilla TypeScript or JavaScript

https://user-images.githubusercontent.com/755708/205744216-5e9efd10-794b-4ce1-9aca-580c34fad193.mp4

Unovis is a modular data visualization framework for React, Angular, Svelte, Vue, Solid and vanilla TypeScript or JavaScript:

  • It has charts, maps, network graphs, and more!
  • Tree-shakable and supports individual component imports to reduce your bundle size;
  • Highly customizable, thanks to the CSS-variables support.

Learn more about Unovis on unovis.dev

Quick Start

You can install the core of the library @unovis/ts and framework-specific packages (if you use React, Angular, Svelte, Vue or Solid) from NPM:

npm install -P @unovis/ts @unovis/<react|angular|svelte|vue|solid>

Now you can import components and create your first chart! Here's how to build a simple line chart uising Unovis and React:

import React, { useCallback } from 'react'
import { VisXYContainer, VisLine, VisAxis } from '@unovis/react'

type DataRecord = { x: number; y: number }
const data: DataRecord[] = [
  { x: 0, y: 0 },
  { x: 1, y: 2 },
  { x: 2, y: 1 },
]

export function BasicLineChart (): JSX.Element {
  return (
    <VisXYContainer data={data}>
      <VisLine<DataRecord>
        x={useCallback(d => d.x, [])}
        y={useCallback(d => d.y, [])}
      ></VisLine>
      <VisAxis type="x"></VisAxis>
      <VisAxis type="y"></VisAxis>
    </VisXYContainer>
  )
}

Looking for Angular, Svelte, Vue, Solid or TypeScript examples? Check out the Quick Start page on our website.

Examples and Documentation

Unovis has an extensive documentation with code snippets for React, Angular, Svelte and TypeScript.

Also there's a growing gallery of examples, from where you can copy the code over to your project or try it live on StackBlitz.

Repository structure

Package Description Version Downloads @unovis/ts Core TypeScript package @unovis/react React components @unovis/angular Angular components @unovis/svelte Svelte components @unovis/vue Vue components @unovis/solid Solid components @unovis/ssr Server-side rendering: charts to SVG/PNG in Node @unovis/mcp MCP server generating charts as SVG packages/website Website, docs and examples — —

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. For more information, please read CONTRIBUTING.

Maintainers

Contributors

License

Unovis is licensed under Apache-2.0

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •It has charts, maps, network graphs, and more!
  • •Tree-shakable and supports individual component imports to reduce your bundle size;
  • •Highly customizable, thanks to the CSS-variables support.

> Tags

TypeScriptangularchartsdata-visualizationgraphs

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category前端框架
PricingOpen source

> Related tools

R
React
用于构建用户界面的 JavaScript 库
V
Vue.js
渐进式 JavaScript 框架
N
Next.js
基于 React 的全栈 Web 框架