hyperprop-charting-library 0.1.43 → 0.1.45

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 CHANGED
@@ -94,6 +94,28 @@ const chart = createChart(root, {
94
94
  });
95
95
  ```
96
96
 
97
+ ## TradingView-Style Labels
98
+
99
+ ```ts
100
+ const chart = createChart(root, {
101
+ labels: {
102
+ symbolName: "ESH6",
103
+ showSymbolName: true,
104
+ showLastPrice: true,
105
+ showPreviousClose: true,
106
+ previousClosePrice: 5231.25,
107
+ showHighLow: true,
108
+ showBidAsk: true,
109
+ bidPrice: 5234.75,
110
+ askPrice: 5235.0,
111
+ showIndicatorNames: true,
112
+ showIndicatorValues: true,
113
+ showCountdownToBarClose: true,
114
+ noOverlapping: true
115
+ }
116
+ });
117
+ ```
118
+
97
119
  ## Axis Label Density
98
120
 
99
121
  ```ts
@@ -85,6 +85,35 @@ var DEFAULT_DASH_PATTERNS = {
85
85
  borderDotted: [2, 2],
86
86
  borderDashed: [6, 4]
87
87
  };
88
+ var DEFAULT_LABELS_OPTIONS = {
89
+ visible: true,
90
+ symbolName: "",
91
+ showSymbolName: false,
92
+ showLastPrice: true,
93
+ showPreviousClose: false,
94
+ previousClosePrice: Number.NaN,
95
+ showHighLow: false,
96
+ showBidAsk: false,
97
+ bidPrice: Number.NaN,
98
+ askPrice: Number.NaN,
99
+ showIndicatorNames: false,
100
+ showIndicatorValues: false,
101
+ showCountdownToBarClose: false,
102
+ noOverlapping: true,
103
+ backgroundColor: "#0b1220",
104
+ textColor: "#cbd5e1",
105
+ mutedTextColor: "#94a3b8",
106
+ symbolNameBackgroundColor: "#1f2937",
107
+ symbolNameTextColor: "#e5e7eb",
108
+ previousCloseColor: "#94a3b8",
109
+ highLowColor: "#a78bfa",
110
+ bidColor: "#ef4444",
111
+ askColor: "#22c55e",
112
+ indicatorTextColor: "#cbd5e1",
113
+ borderRadius: 3,
114
+ labelHeight: 20,
115
+ labelPaddingX: 8
116
+ };
88
117
  var DEFAULT_PRICE_LINE_OPTIONS = {
89
118
  visible: true,
90
119
  style: "solid",
@@ -174,6 +203,7 @@ var DEFAULT_OPTIONS = {
174
203
  labelTextColor: "#0b1220",
175
204
  labelBorderRadius: 3
176
205
  },
206
+ labels: DEFAULT_LABELS_OPTIONS,
177
207
  dashPatterns: DEFAULT_DASH_PATTERNS,
178
208
  indicators: []
179
209
  };
@@ -213,6 +243,10 @@ var mergeChartOptions = (baseOptions, options = {}) => ({
213
243
  ...baseOptions.tickerLine,
214
244
  ...options.tickerLine ?? {}
215
245
  },
246
+ labels: {
247
+ ...baseOptions.labels,
248
+ ...options.labels ?? {}
249
+ },
216
250
  dashPatterns: {
217
251
  ...baseOptions.dashPatterns,
218
252
  ...options.dashPatterns ?? {}
@@ -1279,6 +1313,14 @@ function createChart(element, options = {}) {
1279
1313
  ctx.textBaseline = baseline;
1280
1314
  ctx.fillText(text, x, y);
1281
1315
  };
1316
+ const formatDuration = (ms) => {
1317
+ const totalSeconds = Math.max(0, Math.floor(ms / 1e3));
1318
+ const hours = Math.floor(totalSeconds / 3600);
1319
+ const minutes = Math.floor(totalSeconds % 3600 / 60);
1320
+ const seconds = totalSeconds % 60;
1321
+ const pad = (value) => String(value).padStart(2, "0");
1322
+ return hours > 0 ? `${hours}:${pad(minutes)}:${pad(seconds)}` : `${pad(minutes)}:${pad(seconds)}`;
1323
+ };
1282
1324
  const drawPriceLine = (line, yFromPrice, chartLeft, chartTop, chartRight, chartBottom) => {
1283
1325
  const mergedLine = { ...DEFAULT_PRICE_LINE_OPTIONS, ...line };
1284
1326
  if (!mergedLine.visible || !Number.isFinite(mergedLine.price)) {
@@ -2038,14 +2080,39 @@ function createChart(element, options = {}) {
2038
2080
  drawText(formatPrice(price), chartRight + 6, y, "left", "middle", yAxis.textColor);
2039
2081
  ctx.font = prevFont;
2040
2082
  }
2083
+ const labels = { ...DEFAULT_LABELS_OPTIONS, ...mergedOptions.labels ?? {} };
2084
+ const priceAxisLabels = [];
2085
+ const addPriceAxisLabel = (label) => {
2086
+ if (!labels.visible || !Number.isFinite(label.price) || label.text.length === 0) {
2087
+ return;
2088
+ }
2089
+ priceAxisLabels.push(label);
2090
+ };
2091
+ const drawReferenceLine = (price, color, style = "dotted") => {
2092
+ if (!Number.isFinite(price)) {
2093
+ return;
2094
+ }
2095
+ const y = clamp(yFromPrice(price), chartTop + 1, chartBottom - 1);
2096
+ ctx.save();
2097
+ ctx.strokeStyle = color;
2098
+ ctx.lineWidth = 1;
2099
+ applyDashPattern(style, dashPatterns.dotted, dashPatterns.dashed);
2100
+ ctx.beginPath();
2101
+ ctx.moveTo(crisp(chartLeft), crisp(y));
2102
+ ctx.lineTo(crisp(chartRight), crisp(y));
2103
+ ctx.stroke();
2104
+ ctx.restore();
2105
+ };
2041
2106
  const ticker = mergedOptions.tickerLine ?? DEFAULT_OPTIONS.tickerLine;
2042
2107
  const lastPoint = data[data.length - 1];
2108
+ let tickerPrice = null;
2109
+ let tickerColor = null;
2043
2110
  if ((ticker.visible ?? true) && lastPoint) {
2044
- const tickerPrice = ticker.smoothing && smoothedTickerPrice !== null ? smoothedTickerPrice : lastPoint.c;
2111
+ tickerPrice = ticker.smoothing && smoothedTickerPrice !== null ? smoothedTickerPrice : lastPoint.c;
2045
2112
  const tickerY = yFromPrice(tickerPrice);
2046
2113
  const lineY = clamp(tickerY, chartTop + 1, chartBottom - 1);
2047
2114
  const lastDirection = ticker.smoothing && smoothedTickerPrice !== null ? smoothedTickerPrice >= lastPoint.o ? "up" : "down" : getCandleDirectionByIndex(data.length - 1);
2048
- const tickerColor = ticker.color ?? (lastDirection === "up" ? mergedOptions.upColor : mergedOptions.downColor);
2115
+ tickerColor = ticker.color ?? (lastDirection === "up" ? mergedOptions.upColor : mergedOptions.downColor);
2049
2116
  const tickerThickness = Math.max(1, ticker.thickness ?? 1);
2050
2117
  const tickerStyle = ticker.style ?? "solid";
2051
2118
  ctx.save();
@@ -2058,24 +2125,122 @@ function createChart(element, options = {}) {
2058
2125
  ctx.stroke();
2059
2126
  ctx.setLineDash([]);
2060
2127
  ctx.restore();
2061
- const tickerLabel = formatPrice(tickerPrice);
2128
+ }
2129
+ if ((ticker.visible ?? true) && labels.showLastPrice && tickerPrice !== null && tickerColor !== null) {
2130
+ addPriceAxisLabel({
2131
+ text: formatPrice(tickerPrice),
2132
+ price: tickerPrice,
2133
+ backgroundColor: ticker.labelBackgroundColor ?? tickerColor,
2134
+ textColor: ticker.labelTextColor ?? "#0b1220",
2135
+ color: tickerColor,
2136
+ priority: 100
2137
+ });
2138
+ }
2139
+ if (labels.showSymbolName && labels.symbolName.trim().length > 0 && tickerPrice !== null) {
2140
+ addPriceAxisLabel({
2141
+ text: labels.symbolName.trim(),
2142
+ price: tickerPrice,
2143
+ backgroundColor: labels.symbolNameBackgroundColor,
2144
+ textColor: labels.symbolNameTextColor,
2145
+ color: labels.symbolNameBackgroundColor,
2146
+ priority: 95
2147
+ });
2148
+ }
2149
+ if (labels.showPreviousClose) {
2150
+ const previousCloseCandidate = Number.isFinite(labels.previousClosePrice) ? labels.previousClosePrice : data.length > 1 ? data[data.length - 2]?.c : Number.NaN;
2151
+ if (previousCloseCandidate !== void 0 && Number.isFinite(previousCloseCandidate)) {
2152
+ const previousClose = previousCloseCandidate;
2153
+ drawReferenceLine(previousClose, labels.previousCloseColor, "dashed");
2154
+ addPriceAxisLabel({
2155
+ text: `PDC ${formatPrice(previousClose)}`,
2156
+ price: previousClose,
2157
+ backgroundColor: labels.backgroundColor,
2158
+ textColor: labels.mutedTextColor,
2159
+ color: labels.previousCloseColor,
2160
+ priority: 50
2161
+ });
2162
+ }
2163
+ }
2164
+ if (labels.showHighLow && visibleData.length > 0) {
2165
+ const visibleHigh = Math.max(...visibleData.map((point) => point.h));
2166
+ const visibleLow = Math.min(...visibleData.map((point) => point.l));
2167
+ addPriceAxisLabel({
2168
+ text: `H ${formatPrice(visibleHigh)}`,
2169
+ price: visibleHigh,
2170
+ backgroundColor: labels.backgroundColor,
2171
+ textColor: labels.textColor,
2172
+ color: labels.highLowColor,
2173
+ priority: 40
2174
+ });
2175
+ addPriceAxisLabel({
2176
+ text: `L ${formatPrice(visibleLow)}`,
2177
+ price: visibleLow,
2178
+ backgroundColor: labels.backgroundColor,
2179
+ textColor: labels.textColor,
2180
+ color: labels.highLowColor,
2181
+ priority: 40
2182
+ });
2183
+ }
2184
+ if (labels.showBidAsk) {
2185
+ if (Number.isFinite(labels.bidPrice)) {
2186
+ drawReferenceLine(labels.bidPrice, labels.bidColor, "dotted");
2187
+ addPriceAxisLabel({
2188
+ text: `B ${formatPrice(labels.bidPrice)}`,
2189
+ price: labels.bidPrice,
2190
+ backgroundColor: labels.bidColor,
2191
+ textColor: "#0b1220",
2192
+ color: labels.bidColor,
2193
+ priority: 80
2194
+ });
2195
+ }
2196
+ if (Number.isFinite(labels.askPrice)) {
2197
+ drawReferenceLine(labels.askPrice, labels.askColor, "dotted");
2198
+ addPriceAxisLabel({
2199
+ text: `A ${formatPrice(labels.askPrice)}`,
2200
+ price: labels.askPrice,
2201
+ backgroundColor: labels.askColor,
2202
+ textColor: "#0b1220",
2203
+ color: labels.askColor,
2204
+ priority: 80
2205
+ });
2206
+ }
2207
+ }
2208
+ if (priceAxisLabels.length > 0) {
2209
+ const labelPaddingX = Math.max(4, labels.labelPaddingX);
2210
+ const labelHeight = Math.max(14, labels.labelHeight);
2211
+ const labelRadius = Math.max(0, labels.borderRadius);
2062
2212
  ctx.font = `${Math.max(8, axis.fontSize)}px ${mergedOptions.fontFamily}`;
2063
- const labelPaddingX = 8;
2064
- const labelHeight = 20;
2065
- const labelWidth = getPriceLabelWidth(tickerLabel, labelPaddingX);
2213
+ const positionedLabels = priceAxisLabels.map((label) => {
2214
+ const labelTextWidth = label.text === formatPrice(label.price) ? getPriceLabelWidth(label.text, labelPaddingX) : Math.ceil(ctx.measureText(label.text).width) + labelPaddingX * 2;
2215
+ return {
2216
+ ...label,
2217
+ width: labelTextWidth,
2218
+ targetY: clamp(yFromPrice(label.price), chartTop + 1, chartBottom - 1) - labelHeight / 2,
2219
+ y: 0
2220
+ };
2221
+ }).sort((a, b) => a.targetY - b.targetY || b.priority - a.priority);
2222
+ const minY = chartTop;
2223
+ const maxY = chartBottom - labelHeight;
2224
+ let cursorY = minY;
2225
+ for (const label of positionedLabels) {
2226
+ label.y = labels.noOverlapping ? Math.max(clamp(label.targetY, minY, maxY), cursorY) : clamp(label.targetY, minY, maxY);
2227
+ cursorY = label.y + labelHeight + 2;
2228
+ }
2229
+ if (labels.noOverlapping && positionedLabels.length > 0) {
2230
+ const lastLabel = positionedLabels[positionedLabels.length - 1];
2231
+ const overflow = lastLabel ? lastLabel.y + labelHeight - maxY : 0;
2232
+ if (overflow > 0) {
2233
+ for (const label of positionedLabels) {
2234
+ label.y = Math.max(minY, label.y - overflow);
2235
+ }
2236
+ }
2237
+ }
2066
2238
  const labelX = chartRight + 4;
2067
- const labelY = clamp(lineY - labelHeight / 2, chartTop, chartBottom - labelHeight);
2068
- const labelRadius = Math.max(0, ticker.labelBorderRadius ?? 0);
2069
- ctx.fillStyle = ticker.labelBackgroundColor ?? tickerColor;
2070
- fillRoundedRect(Math.round(labelX), Math.round(labelY), labelWidth, labelHeight, labelRadius);
2071
- drawText(
2072
- tickerLabel,
2073
- labelX + labelPaddingX,
2074
- labelY + labelHeight / 2,
2075
- "left",
2076
- "middle",
2077
- ticker.labelTextColor ?? "#0b1220"
2078
- );
2239
+ for (const label of positionedLabels) {
2240
+ ctx.fillStyle = label.backgroundColor;
2241
+ fillRoundedRect(Math.round(labelX), Math.round(label.y), label.width, labelHeight, labelRadius);
2242
+ drawText(label.text, labelX + labelPaddingX, label.y + labelHeight / 2, "left", "middle", label.textColor);
2243
+ }
2079
2244
  }
2080
2245
  for (const priceLine of priceLines) {
2081
2246
  drawPriceLine(priceLine, yFromPrice, chartLeft, chartTop, chartRight, chartBottom);
@@ -2083,6 +2248,25 @@ function createChart(element, options = {}) {
2083
2248
  for (const orderLine of orderLines) {
2084
2249
  drawOrderLine(orderLine, yFromPrice, chartLeft, chartTop, chartRight, chartBottom);
2085
2250
  }
2251
+ if (labels.visible && (labels.showIndicatorNames || labels.showIndicatorValues)) {
2252
+ const labelEntries = [...activeOverlayIndicators, ...activeSeparateIndicators].map(({ indicator, plugin }) => {
2253
+ const inputValues = Object.entries(indicator.inputs).filter(([, value]) => typeof value === "number" || typeof value === "string" || typeof value === "boolean").slice(0, 2).map(([, value]) => String(value));
2254
+ if (labels.showIndicatorNames && labels.showIndicatorValues && inputValues.length > 0) {
2255
+ return `${plugin.name} ${inputValues.join(" ")}`;
2256
+ }
2257
+ if (labels.showIndicatorNames) {
2258
+ return plugin.name;
2259
+ }
2260
+ return inputValues.join(" ");
2261
+ }).filter((entry) => entry.length > 0);
2262
+ if (labelEntries.length > 0) {
2263
+ const prevFont = ctx.font;
2264
+ ctx.font = `${Math.max(8, axis.fontSize)}px ${mergedOptions.fontFamily}`;
2265
+ const legendText = labelEntries.join(" ");
2266
+ drawText(legendText, chartLeft + 10, chartTop + 10, "left", "top", labels.indicatorTextColor);
2267
+ ctx.font = prevFont;
2268
+ }
2269
+ }
2086
2270
  for (let index = tickStartIndex; index <= visibleTickEnd; index += xStep) {
2087
2271
  const tickTime = getTimeForIndex(index);
2088
2272
  if (!tickTime) {
@@ -2098,6 +2282,16 @@ function createChart(element, options = {}) {
2098
2282
  drawText(timeLabel, x, fullChartBottom + 8, "center", "top", xAxis.textColor);
2099
2283
  ctx.font = prevFont;
2100
2284
  }
2285
+ if (labels.visible && labels.showCountdownToBarClose && lastPoint) {
2286
+ const stepMs = getTimeStepMs();
2287
+ const rawRemainingMs = lastPoint.time.getTime() + stepMs - Date.now();
2288
+ const countdownMs = rawRemainingMs >= 0 && rawRemainingMs <= stepMs * 2 ? rawRemainingMs : stepMs - Date.now() % stepMs;
2289
+ const countdownText = formatDuration(countdownMs);
2290
+ const prevFont = ctx.font;
2291
+ ctx.font = `${xAxisFontSize}px ${mergedOptions.fontFamily}`;
2292
+ drawText(countdownText, chartRight + 6, fullChartBottom + 8, "left", "top", xAxis.textColor);
2293
+ ctx.font = prevFont;
2294
+ }
2101
2295
  if (crosshair.visible && crosshairPoint) {
2102
2296
  const cx = clamp(crosshairPoint.x, chartLeft, chartRight);
2103
2297
  const cy = clamp(crosshairPoint.y, chartTop, chartBottom);
@@ -2536,8 +2730,75 @@ function createChart(element, options = {}) {
2536
2730
  let lastPointerX = 0;
2537
2731
  let lastPointerY = 0;
2538
2732
  let activePointerId = null;
2733
+ const touchPointers = /* @__PURE__ */ new Map();
2734
+ let pinchZoomState = null;
2735
+ const getTouchPair = () => {
2736
+ const points = Array.from(touchPointers.values());
2737
+ const first = points[0];
2738
+ const second = points[1];
2739
+ return first && second ? [first, second] : null;
2740
+ };
2741
+ const getPointerDistance = (first, second) => {
2742
+ return Math.hypot(second.x - first.x, second.y - first.y);
2743
+ };
2744
+ const getMidpoint = (first, second) => {
2745
+ return {
2746
+ x: (first.x + second.x) / 2,
2747
+ y: (first.y + second.y) / 2
2748
+ };
2749
+ };
2750
+ const beginPinchZoom = (first, second) => {
2751
+ if (!drawState || data.length === 0) {
2752
+ return;
2753
+ }
2754
+ const midpoint = getMidpoint(first, second);
2755
+ const anchorRatio = clamp((midpoint.x - drawState.chartLeft) / drawState.chartWidth, 0, 1);
2756
+ pinchZoomState = {
2757
+ startDistance: Math.max(1, getPointerDistance(first, second)),
2758
+ startSpan: xSpan,
2759
+ anchorIndex: drawState.xStart + anchorRatio * xSpan
2760
+ };
2761
+ isDragging = false;
2762
+ dragMode = null;
2763
+ activePointerId = null;
2764
+ pointerDownInfo = null;
2765
+ orderDragState = null;
2766
+ actionDragState = null;
2767
+ canvas.style.cursor = "default";
2768
+ setCrosshairPoint(null);
2769
+ };
2770
+ const applyPinchZoom = (first, second) => {
2771
+ if (!drawState || !pinchZoomState || data.length === 0) {
2772
+ return;
2773
+ }
2774
+ const distance = getPointerDistance(first, second);
2775
+ if (distance <= 0) {
2776
+ return;
2777
+ }
2778
+ const minSpan = minVisibleBars;
2779
+ const maxSpan = Math.min(maxVisibleBars, Math.max(minSpan, data.length + maxPanBars * 2));
2780
+ const nextSpan = clamp(pinchZoomState.startSpan * (pinchZoomState.startDistance / distance), minSpan, maxSpan);
2781
+ const midpoint = getMidpoint(first, second);
2782
+ const anchorRatio = clamp((midpoint.x - drawState.chartLeft) / drawState.chartWidth, 0, 1);
2783
+ const nextStart = pinchZoomState.anchorIndex - anchorRatio * nextSpan;
2784
+ xSpan = nextSpan;
2785
+ xCenter = nextStart + nextSpan / 2;
2786
+ clampXViewport();
2787
+ updateFollowLatest(false);
2788
+ emitViewportChange();
2789
+ draw();
2790
+ };
2539
2791
  const onPointerDown = (event) => {
2540
2792
  const point = getCanvasPoint(event);
2793
+ if (event.pointerType === "touch") {
2794
+ touchPointers.set(event.pointerId, point);
2795
+ canvas.setPointerCapture(event.pointerId);
2796
+ const touchPair = getTouchPair();
2797
+ if (touchPair) {
2798
+ beginPinchZoom(touchPair[0], touchPair[1]);
2799
+ return;
2800
+ }
2801
+ }
2541
2802
  const crosshairButtonRegion = getCrosshairPriceActionRegion(point.x, point.y);
2542
2803
  if (crosshairButtonRegion) {
2543
2804
  crosshairPriceActionHandler?.({
@@ -2599,6 +2860,20 @@ function createChart(element, options = {}) {
2599
2860
  };
2600
2861
  const onPointerMove = (event) => {
2601
2862
  const point = getCanvasPoint(event);
2863
+ if (event.pointerType === "touch" && touchPointers.has(event.pointerId)) {
2864
+ touchPointers.set(event.pointerId, point);
2865
+ const touchPair = getTouchPair();
2866
+ if (touchPair) {
2867
+ if (!pinchZoomState) {
2868
+ beginPinchZoom(touchPair[0], touchPair[1]);
2869
+ }
2870
+ applyPinchZoom(touchPair[0], touchPair[1]);
2871
+ return;
2872
+ }
2873
+ if (pinchZoomState) {
2874
+ return;
2875
+ }
2876
+ }
2602
2877
  if (pointerDownInfo && pointerDownInfo.pointerId === event.pointerId && !pointerDownInfo.moved) {
2603
2878
  const dx = point.x - pointerDownInfo.x;
2604
2879
  const dy = point.y - pointerDownInfo.y;
@@ -2715,6 +2990,22 @@ function createChart(element, options = {}) {
2715
2990
  lastPointerY = point.y;
2716
2991
  };
2717
2992
  const endPointerDrag = (event) => {
2993
+ if (event?.pointerType === "touch") {
2994
+ touchPointers.delete(event.pointerId);
2995
+ if (pinchZoomState) {
2996
+ pinchZoomState = null;
2997
+ isDragging = false;
2998
+ dragMode = null;
2999
+ activePointerId = null;
3000
+ pointerDownInfo = null;
3001
+ setCrosshairPoint(null);
3002
+ canvas.style.cursor = "default";
3003
+ return;
3004
+ }
3005
+ } else if (!event) {
3006
+ touchPointers.clear();
3007
+ pinchZoomState = null;
3008
+ }
2718
3009
  if (event && activePointerId !== null && event.pointerId !== activePointerId) {
2719
3010
  return;
2720
3011
  }
@@ -37,6 +37,7 @@ interface ChartOptions {
37
37
  priceLines?: PriceLineOptions[];
38
38
  orderLines?: OrderLineOptions[];
39
39
  tickerLine?: TickerLineOptions;
40
+ labels?: LabelsOptions;
40
41
  dashPatterns?: Partial<DashPatternOptions>;
41
42
  indicators?: IndicatorInstanceOptions[];
42
43
  }
@@ -263,6 +264,35 @@ interface TickerLineOptions {
263
264
  smoothing?: boolean;
264
265
  smoothingSpeed?: number;
265
266
  }
267
+ interface LabelsOptions {
268
+ visible?: boolean;
269
+ symbolName?: string;
270
+ showSymbolName?: boolean;
271
+ showLastPrice?: boolean;
272
+ showPreviousClose?: boolean;
273
+ previousClosePrice?: number;
274
+ showHighLow?: boolean;
275
+ showBidAsk?: boolean;
276
+ bidPrice?: number;
277
+ askPrice?: number;
278
+ showIndicatorNames?: boolean;
279
+ showIndicatorValues?: boolean;
280
+ showCountdownToBarClose?: boolean;
281
+ noOverlapping?: boolean;
282
+ backgroundColor?: string;
283
+ textColor?: string;
284
+ mutedTextColor?: string;
285
+ symbolNameBackgroundColor?: string;
286
+ symbolNameTextColor?: string;
287
+ previousCloseColor?: string;
288
+ highLowColor?: string;
289
+ bidColor?: string;
290
+ askColor?: string;
291
+ indicatorTextColor?: string;
292
+ borderRadius?: number;
293
+ labelHeight?: number;
294
+ labelPaddingX?: number;
295
+ }
266
296
  interface ChartInstance {
267
297
  updateOptions: (options: ChartOptions) => void;
268
298
  setData: (data: OhlcDataPoint[]) => void;
@@ -326,4 +356,4 @@ interface ViewportState {
326
356
  }
327
357
  declare function createChart(element: HTMLElement, options?: ChartOptions): ChartInstance;
328
358
 
329
- export { type AxisOptions, type BuiltInIndicatorInfo, type ChartClickEvent, type ChartInstance, type ChartOptions, type CrosshairMoveEvent, type CrosshairOptions, type CrosshairPriceActionEvent, type DashPatternOptions, type GridOptions, type IndicatorInstanceOptions, type IndicatorPane, type IndicatorPlugin, type IndicatorRenderContext, type OhlcDataPoint, type OrderActionButton, type OrderActionEvent, type OrderLineOptions, type PriceLineOptions, type TickerLineOptions, type ViewportState, type WatermarkOptions, createChart };
359
+ export { type AxisOptions, type BuiltInIndicatorInfo, type ChartClickEvent, type ChartInstance, type ChartOptions, type CrosshairMoveEvent, type CrosshairOptions, type CrosshairPriceActionEvent, type DashPatternOptions, type GridOptions, type IndicatorInstanceOptions, type IndicatorPane, type IndicatorPlugin, type IndicatorRenderContext, type LabelsOptions, type OhlcDataPoint, type OrderActionButton, type OrderActionEvent, type OrderLineOptions, type PriceLineOptions, type TickerLineOptions, type ViewportState, type WatermarkOptions, createChart };