chart.d.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { QueryList } from '@angular/core';
  14. import { NestedOptionHost } from '../../core/nested-option';
  15. import { NestedOption } from '../../core/nested-option';
  16. import { DxiSeriesComponent } from './series-dxi';
  17. export declare class DxoChartComponent extends NestedOption {
  18. barGroupPadding: number;
  19. barGroupWidth: number;
  20. barWidth: number;
  21. bottomIndent: number;
  22. commonSeriesSettings: any;
  23. dataPrepareSettings: {
  24. checkTypeForAllData?: boolean;
  25. convertToAxisDataType?: boolean;
  26. sortingMethod?: boolean | Function;
  27. };
  28. equalBarWidth: boolean;
  29. maxBubbleSize: number;
  30. minBubbleSize: number;
  31. negativesAsZeroes: boolean;
  32. palette: string | Array<string>;
  33. paletteExtensionMode: string;
  34. series: any | Array<any>;
  35. seriesTemplate: {
  36. customizeSeries?: Function;
  37. nameField?: string;
  38. };
  39. topIndent: number;
  40. useAggregation: boolean;
  41. valueAxis: {
  42. inverted?: boolean;
  43. logarithmBase?: number;
  44. max?: number;
  45. min?: number;
  46. type?: string;
  47. valueType?: string;
  48. };
  49. protected readonly _optionPath: string;
  50. seriesChildren: QueryList<DxiSeriesComponent>;
  51. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  52. }
  53. export declare class DxoChartModule {
  54. }