pace-chart-lib 1.0.21 → 1.0.22

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.
@@ -369,23 +369,6 @@ export declare const setDateFormats: (format: string, dimensionmarks: string[])
369
369
  * @returns {void}
370
370
  */
371
371
  export declare function drawSeriesLabels(formatOptions: TDefaultChartFormatOptionsType, gTag: any, seriesLabels: string[]): void;
372
- /**
373
- * Sets the X-axis title on the SVG chart, adjusting visibility, positioning, and styling based on format options and chart type.
374
- *
375
- * @param {TDefaultChartFormatOptionsType} formatOptions - Chart format options including axis title settings and visibility.
376
- * @param {boolean} barChart - Flag indicating if the chart is a bar chart.
377
- * @param {any} svg - D3 selection of the SVG element where the X-axis title will be appended.
378
- * @param {TMargin} margin - Margin object containing top, left, right, and bottom margins.
379
- * @param {number} xLabel - Height offset for the X-axis label.
380
- * @param {number} height - Total height of the SVG/chart container.
381
- * @param {number} xTitle - Height allocated for the X-axis title element.
382
- * @param {string} chartType - The type of chart (e.g., "bar", "line", etc.).
383
- * @param {number} yLabel - Y-axis label offset (used for positioning in some cases).
384
- * @param {number} innerWidth - Inner width of the static SVG container.
385
- * @param {number} innerHeight - Height of the inner chart area (excluding margins).
386
- *
387
- * @returns {any} The modified SVG selection with the appended X-axis title element.
388
- */
389
372
  export declare function setXaxistitle(formatOptions: TDefaultChartFormatOptionsType, barChart: boolean, svg: any, margin: TMargin, xLabel: number, height: number, xTitle: number, chartType: string, yLabel: number, innerWidth: number, innerHeight: number): void;
390
373
  /**
391
374
  * Adds a Y-axis title to the SVG chart, handling visibility, positioning, rotation, and styling based on format options.
@@ -272,6 +272,7 @@ export type TSeries = {
272
272
  properties?: TLegendEntry;
273
273
  };
274
274
  export type TData = {
275
+ IsadvanceanalyticsChart?: any;
275
276
  ChartData: TSeries[];
276
277
  DimensionList: string[];
277
278
  LegendList: object[];