candleview 1.0.6 → 1.0.8
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 +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/{candleview.js → index.js} +1 -1
- package/dist/{candleview.mjs → index.mjs} +2 -10
- package/package.json +14 -6
package/README.md
CHANGED
|
@@ -188,7 +188,6 @@ const App = () => {
|
|
|
188
188
|
| `timeframe` | `string` | `'1d'` | Chart timeframe (e.g., '1m', '1h', '1d') | No |
|
|
189
189
|
| `timezone` | `string` | `'Asia/Shanghai'` | Timezone for data display | No |
|
|
190
190
|
| `data` | `ICandleViewDataPoint[]` | `[]` | K-line data array | No |
|
|
191
|
-
| `jsonFilePath` | `string` | `''` | Path to JSON data file | No |
|
|
192
191
|
| `url` | `string` | `''` | URL to fetch data from | No |
|
|
193
192
|
| `markData` | `IStaticMarkData[]` | `[]` | Pre-drawn marks data | No |
|
|
194
193
|
| `handleScreenshotCapture` | `(imageData: { dataUrl: string; blob: Blob; width: number; height: number; timestamp: number }) => void` | `undefined` | Callback for screenshot capture | No |
|