@antscorp/antsomi-charts
v1.0.26
Published
An enterprise-class UI design language and React UI library.
Downloads
1,479
Keywords
Readme
An Visualization Library
Introduction
Antsomi Charts is a JavaScript library for creating interactive and responsive charts for data visualization. It provides a wide range of chart types such as bar, line, area, pie, scatter, and more.
Antsomi Charts is built on top of the popular charting library, ECharts, which provides powerful features and customization options for creating beautiful and effective charts. It supports various data formats such as CSV, JSON, and Array and can be easily integrated with other JavaScript frameworks and libraries.
Some of the key features of Antsomi Charts include:
- Responsive and customizable design
- Interactive data visualization with zooming and panning features
- Real-time data streaming and updating
- Multiple coordinate systems and axis types
- Customizable data labels, tooltips, and legends
- Support for multiple languages
Installation
Install Antsomi Charts, the convenient React Charts framework.
We recommend using npm or yarn to install, it not only makes development easier, but also allow you to take advantage of the rich ecosystem of Javascript packages and tooling.
$ npm install @antscorp/antsomi-charts
$ yarn add @antscorp/antsomi-charts
Using component
This is a example for using RfmTreeMap Component
import React from 'react';
import { RfmTreeMap, RFM_TREEMAP_TEST_DATA } from '@antscorp/antsomi-charts';
const App = () => {
return <RfmTreeMap data={RFM_TREEMAP_TEST_DATA} />;
};
export default App;