tsichart-core 2.0.0-beta.1 → 2.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# tsichart-core
|
|
2
2
|
|
|
3
3
|
Framework-agnostic time series charting library for building interactive data visualizations.
|
|
4
4
|
|
|
@@ -15,18 +15,18 @@ Framework-agnostic time series charting library for building interactive data vi
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install
|
|
18
|
+
npm install tsichart-core
|
|
19
19
|
# or
|
|
20
|
-
pnpm add
|
|
20
|
+
pnpm add tsichart-core
|
|
21
21
|
# or
|
|
22
|
-
yarn add
|
|
22
|
+
yarn add tsichart-core
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Quick Start
|
|
26
26
|
|
|
27
27
|
```typescript
|
|
28
|
-
import { LineChart } from '
|
|
29
|
-
import '
|
|
28
|
+
import { LineChart } from 'tsichart-core';
|
|
29
|
+
import 'tsichart-core/styles';
|
|
30
30
|
|
|
31
31
|
// Create a container element
|
|
32
32
|
const container = document.getElementById('chart-container');
|
|
@@ -68,8 +68,8 @@ chart.render(data, options, aggregateExpressionOptions);
|
|
|
68
68
|
## Usage with Frameworks
|
|
69
69
|
|
|
70
70
|
For framework-specific wrappers, see:
|
|
71
|
-
- **React**:
|
|
72
|
-
- **Vue**:
|
|
71
|
+
- **React**: `tsichart-react`
|
|
72
|
+
- **Vue**: `tsichart-vue`
|
|
73
73
|
|
|
74
74
|
## Documentation
|
|
75
75
|
|