aliencharts 0.1.3 → 0.1.4

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/index.d.ts CHANGED
@@ -122,6 +122,15 @@ export interface ChartGridProps {
122
122
  initialVisiblePoints?: number | null;
123
123
  backgroundColor?: string;
124
124
  antialiasLines?: boolean;
125
+ gridLines?: boolean | {
126
+ /** Horizontal distance in pixels between vertical grid lines. */
127
+ xSpacing?: number;
128
+ /** Vertical distance in pixels between horizontal grid lines. */
129
+ ySpacing?: number;
130
+ };
131
+ showToolbar?: boolean;
132
+ showLatestValueLine?: boolean;
133
+ showTooltips?: boolean;
125
134
  followLatest?: boolean;
126
135
  followVisibleLatest?: boolean;
127
136
  jumpToLatestRevision?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aliencharts",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "WebGL chart renderer for multi-metric dashboards, built for ease of use and high performance.",
5
5
  "type": "module",
6
6
  "license": "MIT",