constant.d.ts 806 B

12345678910111213141516171819202122232425262728293031
  1. export declare const Y_FIELD = "$$stock-range$$";
  2. export declare const TREND_FIELD = "trend";
  3. export declare const TREND_UP = "up";
  4. export declare const TREND_DOWN = "down";
  5. /** tooltip 配置 */
  6. export declare const DEFAULT_TOOLTIP_OPTIONS: {
  7. showMarkers: boolean;
  8. showCrosshairs: boolean;
  9. shared: boolean;
  10. crosshairs: {
  11. type: string;
  12. follow: boolean;
  13. text: (type: any, defaultContent: any, items: any) => {
  14. position: string;
  15. content: any;
  16. style: {
  17. fill: string;
  18. };
  19. };
  20. textBackground: {
  21. padding: number[];
  22. style: {
  23. fill: string;
  24. };
  25. };
  26. };
  27. };
  28. /**
  29. * 散点图 默认配置项
  30. */
  31. export declare const DEFAULT_OPTIONS: any;