@oliasoft-open-source/charts-library 5.0.0-beta-2 → 5.0.0
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/dist/assets/Color-6VNJS4EI-DLbcRNMp.js +1 -0
- package/dist/assets/DocsRenderer-NNNQARDV-BOzykHvd.js +1 -0
- package/dist/assets/WithTooltip-V3YHNWJZ-BeePhoIB.js +1 -0
- package/dist/assets/_getPrototype-Bgn98YsR.js +3 -0
- package/dist/assets/{bar-chart.stories-D9mtWCnD.js → bar-chart.stories-BEwhK613.js} +35 -35
- package/dist/assets/chunk-HLWAVYOI-BJEcfeBO.js +364 -0
- package/dist/assets/entry-preview-D8lfu5jc.js +1 -0
- package/dist/assets/entry-preview-docs-CRyh30bF.js +54 -0
- package/dist/assets/formatter-SWP5E3XI-Bj1a9__W.js +156 -0
- package/dist/assets/get-draggableData-DhvAHrT5.js +2 -0
- package/dist/assets/iframe-BurE_SJm.js +8 -0
- package/dist/assets/index-B7LTuyD5.js +1 -0
- package/dist/assets/index-BXzfdmYx.js +24 -0
- package/dist/assets/index-CZvFZgOq.js +9 -0
- package/dist/assets/index-D3eZ-H7s.js +1 -0
- package/dist/assets/index-DrFu-skq.js +6 -0
- package/dist/assets/index-uubelm5h.js +9 -0
- package/dist/assets/isPlainObject-DdO3KXLu.js +1 -0
- package/dist/assets/legend-BWpTckOL.js +278 -0
- package/dist/assets/legend-context-BAQplG-D.js +71 -0
- package/dist/assets/line-chart-L0zq38Nj.js +1 -0
- package/dist/assets/line-chart.stories-CurD8upE.js +1130 -0
- package/dist/assets/{line-chart.test-case.stories-DgfMW1VB.js → line-chart.test-case.stories-Cq5J45Io.js} +2 -2
- package/dist/assets/pie-chart.stories-Duex2I6n.js +45 -0
- package/dist/assets/preview-BBDnT5_b.js +30 -0
- package/dist/assets/preview-D4u66u8a.js +2 -0
- package/dist/assets/preview-FHoZfaOb.js +17 -0
- package/dist/assets/react-18-Xi5cNDBV.js +1 -0
- package/dist/assets/scatter-chart.stories-D0618GGr.js +41 -0
- package/dist/assets/syntaxhighlighter-MJWPISIS-Bmhn3z6A.js +1 -0
- package/dist/bar-chart/bar-chart-const.d.ts +2 -0
- package/dist/bar-chart/bar-chart-default-props.d.ts +2 -0
- package/dist/bar-chart/bar-chart.d.ts +3 -0
- package/dist/bar-chart/bar-chart.interface.d.ts +96 -0
- package/dist/bar-chart/bar-chart.stories.d.ts +807 -0
- package/dist/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
- package/dist/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
- package/dist/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
- package/dist/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
- package/dist/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
- package/dist/common/common.interface.d.ts +206 -0
- package/dist/common/controls-portal.d.ts +7 -0
- package/dist/common/enums.d.ts +10 -0
- package/dist/common/helpers/chart-border-plugin.d.ts +16 -0
- package/dist/common/helpers/chart-consts.d.ts +39 -0
- package/dist/common/helpers/chart-utils.d.ts +84 -0
- package/dist/common/helpers/container.d.ts +18 -0
- package/dist/common/helpers/custom-format-number.d.ts +1 -0
- package/dist/common/helpers/download-pgn.d.ts +4 -0
- package/dist/common/helpers/enums.d.ts +80 -0
- package/dist/common/helpers/get-chart-annotation.d.ts +90 -0
- package/dist/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
- package/dist/common/helpers/get-draggableData.d.ts +18 -0
- package/dist/common/helpers/range/estimate-close-values.test.d.ts +1 -0
- package/dist/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
- package/dist/common/helpers/range/range.d.ts +33 -0
- package/dist/common/helpers/range/range.test.d.ts +1 -0
- package/dist/common/helpers/text.d.ts +1 -0
- package/dist/common/helpers/to-annotation.d.ts +4 -0
- package/dist/common/hooks/use-generated-labels.d.ts +4 -0
- package/dist/common/hooks/use-legend-state.d.ts +28 -0
- package/dist/common/hooks/use-legend.d.ts +4 -0
- package/dist/common/hooks/use-reset.d.ts +3 -0
- package/dist/common/legend-component/legend-dropzone.d.ts +3 -0
- package/dist/common/legend-component/legend-interface.d.ts +48 -0
- package/dist/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
- package/dist/common/legend-component/legend-item/legend-item.d.ts +3 -0
- package/dist/common/legend-component/legend-panel.d.ts +3 -0
- package/dist/common/legend-component/legend.d.ts +3 -0
- package/dist/common/legend-component/state/legend-action-types.d.ts +2 -0
- package/dist/common/legend-component/state/legend-context.d.ts +12 -0
- package/dist/common/legend-component/state/legend-state-reducer.d.ts +26 -0
- package/dist/common/legend-component/utils/create-style-object.d.ts +27 -0
- package/dist/common/legend-component/utils/get-generated-labels.d.ts +2 -0
- package/dist/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
- package/dist/common/plugins/annotation-dragger-plugin/enums.d.ts +20 -0
- package/dist/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
- package/dist/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
- package/dist/common/plugins/annotation-dragger-plugin/helpers.test.d.ts +1 -0
- package/dist/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
- package/dist/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
- package/dist/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
- package/dist/favicon.svg +7 -1
- package/dist/iframe.html +51 -259
- package/dist/index.d.ts +1 -8
- package/dist/index.html +30 -80
- package/dist/index.json +1 -1
- package/dist/line-chart/__tests__/test-data/app-test-case-1.json.d.ts +8733 -0
- package/dist/line-chart/__tests__/test-data/app-test-case-2.json.d.ts +11614 -0
- package/dist/line-chart/__tests__/test-data/app-test-case-3.json.d.ts +34 -0
- package/dist/line-chart/__tests__/test-data/app-test-case-4.json.d.ts +411 -0
- package/dist/line-chart/__tests__/test-data/app-test-case-5.json.d.ts +2734 -0
- package/dist/line-chart/__tests__/test-data/app-test-case-6.json.d.ts +2236 -0
- package/dist/line-chart/constants/default-translations.d.ts +25 -0
- package/dist/line-chart/constants/line-chart-consts.d.ts +13 -0
- package/dist/line-chart/controls/axes-options/action-types.d.ts +5 -0
- package/dist/line-chart/controls/axes-options/axes-options-form-state.d.ts +23 -0
- package/dist/line-chart/controls/axes-options/axes-options-form-state.test.d.ts +1 -0
- package/dist/line-chart/controls/axes-options/axes-options-interfaces.d.ts +54 -0
- package/dist/line-chart/controls/axes-options/axes-options.d.ts +6 -0
- package/dist/line-chart/controls/controls-interfaces.d.ts +20 -0
- package/dist/line-chart/controls/controls.d.ts +6 -0
- package/dist/line-chart/controls/drag-options-interfaces.d.ts +14 -0
- package/dist/line-chart/controls/drag-options.d.ts +23 -0
- package/dist/line-chart/controls/line-options.d.ts +19 -0
- package/dist/line-chart/hooks/use-chart-functions.d.ts +32 -0
- package/dist/line-chart/hooks/use-chart-options.d.ts +16 -0
- package/dist/line-chart/hooks/use-chart-plugins.d.ts +7 -0
- package/dist/line-chart/hooks/use-chart-state.d.ts +17 -0
- package/dist/line-chart/hooks/use-toggle-handler.d.ts +12 -0
- package/dist/line-chart/initialize/config.d.ts +12 -0
- package/dist/line-chart/initialize/initialize-line-chart.d.ts +12 -0
- package/dist/line-chart/initialize/initialize-line-chart.test.d.ts +1 -0
- package/dist/line-chart/line-chart-get-default-props.d.ts +2 -0
- package/dist/line-chart/line-chart.d.ts +3 -0
- package/dist/line-chart/line-chart.interface.d.ts +146 -0
- package/dist/line-chart/line-chart.stories.d.ts +1729 -0
- package/dist/line-chart/line-chart.test-case.stories.d.ts +29 -0
- package/dist/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
- package/dist/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
- package/dist/line-chart/plugins/line-chart.minor-gridlines-plugin.test.d.ts +1 -0
- package/dist/line-chart/plugins/plugin-constants.d.ts +11 -0
- package/dist/line-chart/plugins/plugins.interface.d.ts +9 -0
- package/dist/line-chart/state/action-types.d.ts +12 -0
- package/dist/line-chart/state/initial-state.d.ts +14 -0
- package/dist/line-chart/state/line-chart-reducer.d.ts +2 -0
- package/dist/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
- package/dist/line-chart/state/state.interfaces.d.ts +34 -0
- package/dist/line-chart/utils/__tests__/get-annotations-data.test.d.ts +1 -0
- package/dist/line-chart/utils/__tests__/get-axes-data-from-metasets.test.d.ts +1 -0
- package/dist/line-chart/utils/__tests__/get-axes-type-from-key.test.d.ts +1 -0
- package/dist/line-chart/utils/__tests__/get-axis-range-by-type.test.d.ts +1 -0
- package/dist/line-chart/utils/__tests__/get-line-chart-tooltips.test.d.ts +1 -0
- package/dist/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
- package/dist/line-chart/utils/axis-formatting/axis-formatting.test.d.ts +1 -0
- package/dist/line-chart/utils/axis-scales/axis-scales.d.ts +11 -0
- package/dist/line-chart/utils/axis-scales/axis-scales.test.d.ts +1 -0
- package/dist/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
- package/dist/line-chart/utils/check-custom-option/check-custom-option.test.d.ts +1 -0
- package/dist/line-chart/utils/datalabels-alignment/__tests__/get-alignment-condition.test.d.ts +1 -0
- package/dist/line-chart/utils/datalabels-alignment/__tests__/get-alignment-data.test.d.ts +1 -0
- package/dist/line-chart/utils/datalabels-alignment/__tests__/get-datalabels-position.test.d.ts +1 -0
- package/dist/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
- package/dist/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
- package/dist/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
- package/dist/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
- package/dist/line-chart/utils/enums.d.ts +4 -0
- package/dist/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
- package/dist/line-chart/utils/get-annotations-data.d.ts +1 -0
- package/dist/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
- package/dist/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
- package/dist/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
- package/dist/line-chart/utils/get-generated-labels.d.ts +2 -0
- package/dist/line-chart/utils/get-line-chart-data-labels.d.ts +19 -0
- package/dist/line-chart/utils/get-line-chart-scales.d.ts +4 -0
- package/dist/line-chart/utils/get-line-chart-tooltips.d.ts +20 -0
- package/dist/line-chart/utils/line-chart-utils.d.ts +32 -0
- package/dist/line-chart/utils/translations/get-translations.d.ts +8 -0
- package/dist/line-chart/utils/translations/get-translations.test.d.ts +1 -0
- package/dist/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
- package/dist/pie-chart/pie-chart-get-default-props.d.ts +3 -0
- package/dist/pie-chart/pie-chart.d.ts +3 -0
- package/dist/pie-chart/pie-chart.interface.d.ts +70 -0
- package/dist/pie-chart/pie-chart.stories.d.ts +263 -0
- package/dist/pie-chart/use-pie-chart-config.d.ts +41 -0
- package/dist/project.json +1 -1
- package/dist/sb-addons/actions-0/manager-bundle.js +3 -0
- package/dist/sb-addons/actions-0/manager-bundle.js.LEGAL.txt +0 -0
- package/dist/sb-addons/storybook-dark-mode-esm-preset-1/manager-bundle.js +5 -0
- package/dist/sb-addons/storybook-dark-mode-esm-preset-1/manager-bundle.js.LEGAL.txt +0 -0
- package/dist/sb-common-assets/fonts.css +31 -0
- package/dist/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +1 -0
- package/dist/sb-manager/chunk-5QAFKPS7.js +7 -0
- package/dist/sb-manager/chunk-7PRFHFSS.js +9 -0
- package/dist/sb-manager/chunk-XE6LDGTE.js +406 -0
- package/dist/sb-manager/chunk-YDUB7CS6.js +348 -0
- package/dist/sb-manager/chunk-ZEU7PDD3.js +1 -0
- package/dist/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
- package/dist/sb-manager/globals-module-info.js +1 -1051
- package/dist/sb-manager/globals.js +1 -48
- package/dist/sb-manager/index.js +1 -0
- package/dist/sb-manager/runtime.js +1 -12048
- package/dist/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +1 -0
- package/dist/sb-preview/globals.js +1 -0
- package/dist/sb-preview/runtime.js +112 -0
- package/dist/scatter-chart/hooks/use-scatter-chart-config.d.ts +113 -0
- package/dist/scatter-chart/scatter-chart-default-props.interface.d.ts +71 -0
- package/dist/scatter-chart/scatter-chart-get-default-props.d.ts +3 -0
- package/dist/scatter-chart/scatter-chart.d.ts +3 -0
- package/dist/scatter-chart/scatter-chart.interface.d.ts +81 -0
- package/dist/scatter-chart/scatter-chart.stories.d.ts +279 -0
- package/dist/scatter-chart/utils/get-scales-config.d.ts +49 -0
- package/dist/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
- package/dist/src/components/bar-chart/bar-chart-const.d.ts +2 -0
- package/dist/src/components/bar-chart/bar-chart-default-props.d.ts +2 -0
- package/dist/src/components/bar-chart/bar-chart.d.ts +3 -0
- package/dist/src/components/bar-chart/bar-chart.interface.d.ts +96 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-data-labels.d.ts +10 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-scales.d.ts +3 -0
- package/dist/src/components/bar-chart/utils/get-bar-chart-tooltips.d.ts +6 -0
- package/dist/src/components/bar-chart/utils/use-bar-chart-config.d.ts +13 -0
- package/dist/src/components/bar-chart/utils/use-bar-chart-options.d.ts +55 -0
- package/dist/src/components/common/common.interface.d.ts +206 -0
- package/dist/src/components/common/controls-portal.d.ts +7 -0
- package/dist/src/components/common/enums.d.ts +10 -0
- package/dist/src/components/common/helpers/chart-border-plugin.d.ts +16 -0
- package/dist/src/components/common/helpers/chart-consts.d.ts +39 -0
- package/dist/src/components/common/helpers/chart-utils.d.ts +84 -0
- package/dist/src/components/common/helpers/container.d.ts +18 -0
- package/dist/src/components/common/helpers/custom-format-number.d.ts +1 -0
- package/dist/src/components/common/helpers/download-pgn.d.ts +4 -0
- package/dist/src/components/common/helpers/enums.d.ts +80 -0
- package/dist/src/components/common/helpers/get-chart-annotation.d.ts +90 -0
- package/dist/src/components/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
- package/dist/src/components/common/helpers/get-draggableData.d.ts +18 -0
- package/dist/src/components/common/helpers/range/estimate-data-series-have-close-values.d.ts +8 -0
- package/dist/src/components/common/helpers/range/range.d.ts +33 -0
- package/dist/src/components/common/helpers/text.d.ts +1 -0
- package/dist/src/components/common/helpers/to-annotation.d.ts +4 -0
- package/dist/src/components/common/hooks/use-generated-labels.d.ts +4 -0
- package/dist/src/components/common/hooks/use-legend-state.d.ts +28 -0
- package/dist/src/components/common/hooks/use-legend.d.ts +4 -0
- package/dist/src/components/common/hooks/use-reset.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend-dropzone.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend-interface.d.ts +48 -0
- package/dist/src/components/common/legend-component/legend-item/LegendItemLine.d.ts +5 -0
- package/dist/src/components/common/legend-component/legend-item/legend-item.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend-panel.d.ts +3 -0
- package/dist/src/components/common/legend-component/legend.d.ts +3 -0
- package/dist/src/components/common/legend-component/state/legend-action-types.d.ts +2 -0
- package/dist/src/components/common/legend-component/state/legend-context.d.ts +12 -0
- package/dist/src/components/common/legend-component/state/legend-state-reducer.d.ts +26 -0
- package/dist/src/components/common/legend-component/utils/create-style-object.d.ts +27 -0
- package/dist/src/components/common/legend-component/utils/get-generated-labels.d.ts +2 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/annotation-dragger-plugin.d.ts +15 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/enums.d.ts +20 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/event-helpers.d.ts +6 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/helpers.d.ts +53 -0
- package/dist/src/components/common/plugins/annotation-dragger-plugin/point-annotation-label.d.ts +5 -0
- package/dist/src/components/common/plugins/gradient-background-plugin/enums.d.ts +10 -0
- package/dist/src/components/common/plugins/gradient-background-plugin/gradient-background-plugin.d.ts +2 -0
- package/dist/src/components/line-chart/constants/default-translations.d.ts +25 -0
- package/dist/src/components/line-chart/constants/line-chart-consts.d.ts +13 -0
- package/dist/src/components/line-chart/controls/axes-options/action-types.d.ts +5 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options-form-state.d.ts +23 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options-interfaces.d.ts +54 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options.d.ts +6 -0
- package/dist/src/components/line-chart/controls/controls-interfaces.d.ts +20 -0
- package/dist/src/components/line-chart/controls/controls.d.ts +6 -0
- package/dist/src/components/line-chart/controls/drag-options-interfaces.d.ts +14 -0
- package/dist/src/components/line-chart/controls/drag-options.d.ts +23 -0
- package/dist/src/components/line-chart/controls/line-options.d.ts +19 -0
- package/dist/src/components/line-chart/hooks/use-chart-functions.d.ts +32 -0
- package/dist/src/components/line-chart/hooks/use-chart-options.d.ts +16 -0
- package/dist/src/components/line-chart/hooks/use-chart-plugins.d.ts +7 -0
- package/dist/src/components/line-chart/hooks/use-chart-state.d.ts +17 -0
- package/dist/src/components/line-chart/hooks/use-toggle-handler.d.ts +12 -0
- package/dist/src/components/line-chart/initialize/config.d.ts +12 -0
- package/dist/src/components/line-chart/initialize/initialize-line-chart.d.ts +12 -0
- package/dist/src/components/line-chart/line-chart-get-default-props.d.ts +2 -0
- package/dist/src/components/line-chart/line-chart.d.ts +3 -0
- package/dist/src/components/line-chart/line-chart.interface.d.ts +146 -0
- package/dist/src/components/line-chart/plugins/chart-area-text-plugin.d.ts +17 -0
- package/dist/src/components/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +8 -0
- package/dist/src/components/line-chart/plugins/plugin-constants.d.ts +11 -0
- package/dist/src/components/line-chart/plugins/plugins.interface.d.ts +9 -0
- package/dist/src/components/line-chart/state/action-types.d.ts +12 -0
- package/dist/src/components/line-chart/state/initial-state.d.ts +14 -0
- package/dist/src/components/line-chart/state/line-chart-reducer.d.ts +2 -0
- package/dist/src/components/line-chart/state/manage-state-in-local-storage.d.ts +15 -0
- package/dist/src/components/line-chart/state/state.interfaces.d.ts +34 -0
- package/dist/src/components/line-chart/utils/axis-formatting/axis-formatting.d.ts +2 -0
- package/dist/src/components/line-chart/utils/axis-scales/axis-scales.d.ts +11 -0
- package/dist/src/components/line-chart/utils/check-custom-option/check-custom-option.d.ts +12 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/datalabels-alignment.interface.d.ts +20 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +8 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +6 -0
- package/dist/src/components/line-chart/utils/enums.d.ts +4 -0
- package/dist/src/components/line-chart/utils/generate-line-chart-datasets.d.ts +8 -0
- package/dist/src/components/line-chart/utils/get-annotations-data.d.ts +1 -0
- package/dist/src/components/line-chart/utils/get-axes-data-from-metasets.d.ts +1 -0
- package/dist/src/components/line-chart/utils/get-axes-ranges-from-chart.d.ts +9 -0
- package/dist/src/components/line-chart/utils/get-axis-range-by-type.d.ts +10 -0
- package/dist/src/components/line-chart/utils/get-generated-labels.d.ts +2 -0
- package/dist/src/components/line-chart/utils/get-line-chart-data-labels.d.ts +19 -0
- package/dist/src/components/line-chart/utils/get-line-chart-scales.d.ts +4 -0
- package/dist/src/components/line-chart/utils/get-line-chart-tooltips.d.ts +20 -0
- package/dist/src/components/line-chart/utils/line-chart-utils.d.ts +32 -0
- package/dist/src/components/line-chart/utils/translations/get-translations.d.ts +8 -0
- package/dist/src/components/pie-chart/pie-chart-defalut-props.interface.d.ts +50 -0
- package/dist/src/components/pie-chart/pie-chart-get-default-props.d.ts +3 -0
- package/dist/src/components/pie-chart/pie-chart.d.ts +3 -0
- package/dist/src/components/pie-chart/pie-chart.interface.d.ts +70 -0
- package/dist/src/components/pie-chart/use-pie-chart-config.d.ts +41 -0
- package/dist/src/components/scatter-chart/hooks/use-scatter-chart-config.d.ts +113 -0
- package/dist/src/components/scatter-chart/scatter-chart-default-props.interface.d.ts +71 -0
- package/dist/src/components/scatter-chart/scatter-chart-get-default-props.d.ts +3 -0
- package/dist/src/components/scatter-chart/scatter-chart.d.ts +3 -0
- package/dist/src/components/scatter-chart/scatter-chart.interface.d.ts +81 -0
- package/dist/src/components/scatter-chart/utils/get-scales-config.d.ts +49 -0
- package/dist/src/components/scatter-chart/utils/get-tooltip-config.d.ts +21 -0
- package/dist/stories.json +1 -0
- package/package.json +3 -2
- package/dist/assets/Color-YHDXOIA2-D6i6tiFz.js +0 -1
- package/dist/assets/DocsRenderer-CFRXHY34-D88vu1Xb.js +0 -580
- package/dist/assets/client-9BU5HM4U.js +0 -1
- package/dist/assets/entry-preview-D2XJoWVM.js +0 -10
- package/dist/assets/entry-preview-docs-z3mMcuG4.js +0 -46
- package/dist/assets/get-draggableData-DO0Px5pc.js +0 -2
- package/dist/assets/iframe-DLnw2TiW.js +0 -217
- package/dist/assets/index-B-BONL6g.js +0 -1
- package/dist/assets/index-BGqSdrBK.js +0 -1
- package/dist/assets/index-CVdx34fM.js +0 -1
- package/dist/assets/index-D3-0uUTW.js +0 -24
- package/dist/assets/index-Dytf1aFS.js +0 -8
- package/dist/assets/index-eCxJ45ll.js +0 -9
- package/dist/assets/jsx-runtime-Y5Ju2SGo.js +0 -9
- package/dist/assets/legend-BI53UIaI.js +0 -1346
- package/dist/assets/legend-context-BNCYpFYh.js +0 -68
- package/dist/assets/line-chart-BdFuLh7N.js +0 -1
- package/dist/assets/line-chart.stories-BVsiy8CQ.js +0 -1130
- package/dist/assets/pie-chart.stories-BVurv17M.js +0 -45
- package/dist/assets/preview-CLM2f008.js +0 -2
- package/dist/assets/preview-DD_OYowb.js +0 -1
- package/dist/assets/preview-XObsormK.js +0 -3
- package/dist/assets/react-18-DZY5LW1V.js +0 -1
- package/dist/assets/react-CxVRKATl.js +0 -1
- package/dist/assets/scatter-chart.stories-DnivHhIH.js +0 -41
- package/dist/nunito-sans-bold-italic.woff2 +0 -0
- package/dist/nunito-sans-bold.woff2 +0 -0
- package/dist/nunito-sans-italic.woff2 +0 -0
- package/dist/nunito-sans-regular.woff2 +0 -0
- package/dist/sb-addons/actions-1/manager-bundle.js +0 -3
- package/dist/sb-addons/docs-2/manager-bundle.js +0 -242
- package/dist/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
- package/dist/sb-addons/storybook-dark-mode-esm-preset-3/manager-bundle.js +0 -5
- package/dist/sb-common-assets/favicon.svg +0 -1
- package/dist/sb-manager/globals-runtime.js +0 -41591
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"data": {
|
|
3
|
+
"datasets": [
|
|
4
|
+
{
|
|
5
|
+
"label": "PiGas IPR",
|
|
6
|
+
"lineTension": "0",
|
|
7
|
+
"pointHitRadius": 10,
|
|
8
|
+
"borderWidth": 2,
|
|
9
|
+
"data": [
|
|
10
|
+
{ "x": 0.0031044910179640725, "y": 0 },
|
|
11
|
+
{ "x": 0, "y": 311.07 }
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"options": {
|
|
17
|
+
"title": "",
|
|
18
|
+
"direction": "vertical",
|
|
19
|
+
"axes": {
|
|
20
|
+
"x": [
|
|
21
|
+
{ "label": "Flowrate for Gas (blowout) [MSm3/d]", "position": "bottom" }
|
|
22
|
+
],
|
|
23
|
+
"y": [{ "label": "Pressure [bar]" }]
|
|
24
|
+
},
|
|
25
|
+
"annotations": { "annotationsData": [], "showAnnotations": true },
|
|
26
|
+
"additionalAxesOptions": { "chartScaleType": "linear", "reverse": false },
|
|
27
|
+
"graph": { "showMinorGridlines": true },
|
|
28
|
+
"chartStyling": {},
|
|
29
|
+
"chartOptions": { "showPoints": false }
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
;
|
|
33
|
+
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"data": {
|
|
3
|
+
"datasets": [
|
|
4
|
+
{
|
|
5
|
+
"label": "BR only stiff (#2)",
|
|
6
|
+
"lineTension": 0.01,
|
|
7
|
+
"showLine": true,
|
|
8
|
+
"borderWidth": 2,
|
|
9
|
+
"data": [
|
|
10
|
+
{ "x": 0, "y": 280 },
|
|
11
|
+
{ "x": 0, "y": 290 },
|
|
12
|
+
{ "x": 0, "y": 300 },
|
|
13
|
+
{ "x": 0, "y": 310 },
|
|
14
|
+
{ "x": 0, "y": 320 },
|
|
15
|
+
{ "x": 0, "y": 330 },
|
|
16
|
+
{ "x": 0, "y": 340 },
|
|
17
|
+
{ "x": 0, "y": 350 },
|
|
18
|
+
{ "x": 0, "y": 360 },
|
|
19
|
+
{ "x": 0, "y": 370 },
|
|
20
|
+
{ "x": 0, "y": 380 },
|
|
21
|
+
{ "x": 0, "y": 390 },
|
|
22
|
+
{ "x": 0.00011192144724557333, "y": 400 },
|
|
23
|
+
{ "x": 0.00012391978499108524, "y": 410 },
|
|
24
|
+
{ "x": 0.000017558477229833495, "y": 420 },
|
|
25
|
+
{ "x": 0.00011731659085573875, "y": 430 },
|
|
26
|
+
{ "x": 0.00009708189452717992, "y": 440 },
|
|
27
|
+
{ "x": 0.00005940616994322382, "y": 450 },
|
|
28
|
+
{ "x": 0.00004979898212209437, "y": 460 },
|
|
29
|
+
{ "x": 0.00004492796926193294, "y": 470 },
|
|
30
|
+
{ "x": 0.00003469783115916496, "y": 480 },
|
|
31
|
+
{ "x": 0.000058616339841286076, "y": 490 },
|
|
32
|
+
{ "x": 0.00006202060183591471, "y": 500 },
|
|
33
|
+
{ "x": 0.00008435606724603698, "y": 510 },
|
|
34
|
+
{ "x": 0.00011326248680307483, "y": 520 },
|
|
35
|
+
{ "x": 0.00011313950064990931, "y": 530 },
|
|
36
|
+
{ "x": 0.00017690636603002734, "y": 540 },
|
|
37
|
+
{ "x": 0.00019234347492243, "y": 550 },
|
|
38
|
+
{ "x": 0.00016573114407092965, "y": 560 },
|
|
39
|
+
{ "x": 0.00014083400183506495, "y": 570 },
|
|
40
|
+
{ "x": 0.00013766256707050864, "y": 580 },
|
|
41
|
+
{ "x": 0.000150408740595257, "y": 590 },
|
|
42
|
+
{ "x": 0.00021528041975124078, "y": 600 },
|
|
43
|
+
{ "x": 0.00024970396770143666, "y": 610 },
|
|
44
|
+
{ "x": 0.000245763925164197, "y": 620 },
|
|
45
|
+
{ "x": 0.00019458324860552415, "y": 630 },
|
|
46
|
+
{ "x": 0.00013410948708594809, "y": 640 },
|
|
47
|
+
{ "x": 0.0001251056936411451, "y": 650 },
|
|
48
|
+
{ "x": 0.00005958691659197846, "y": 660 },
|
|
49
|
+
{ "x": 0.00005844889125566818, "y": 670 },
|
|
50
|
+
{ "x": 0.000048006463723802414, "y": 680 },
|
|
51
|
+
{ "x": 0.000029540244539164856, "y": 690 },
|
|
52
|
+
{ "x": 0.00003878657890316873, "y": 700 },
|
|
53
|
+
{ "x": 0.000055329566922794054, "y": 710 },
|
|
54
|
+
{ "x": 0.00012300506627520603, "y": 720 },
|
|
55
|
+
{ "x": 0.0001278620311317727, "y": 730 },
|
|
56
|
+
{ "x": 0.000052387586047428534, "y": 740 },
|
|
57
|
+
{ "x": 0.00005109873161261252, "y": 750 },
|
|
58
|
+
{ "x": 0.00005486449074574468, "y": 760 },
|
|
59
|
+
{ "x": 0.00006765476065359873, "y": 770 },
|
|
60
|
+
{ "x": 0.0000663506086599942, "y": 780 },
|
|
61
|
+
{ "x": 0.00008238932588071904, "y": 790 },
|
|
62
|
+
{ "x": 0.00008900032784442616, "y": 800 },
|
|
63
|
+
{ "x": 0.00008929248057794366, "y": 810 },
|
|
64
|
+
{ "x": 0.00008754265573359836, "y": 820 },
|
|
65
|
+
{ "x": 0.00009586263746064361, "y": 830 },
|
|
66
|
+
{ "x": 0.0000859956050415024, "y": 840 },
|
|
67
|
+
{ "x": 0.00007807443821781742, "y": 850 },
|
|
68
|
+
{ "x": 0.00006824474317221625, "y": 860 },
|
|
69
|
+
{ "x": 0.0000821633728881195, "y": 870 },
|
|
70
|
+
{ "x": 0.00012794300474231788, "y": 880 },
|
|
71
|
+
{ "x": 0.00009813840735312046, "y": 890 },
|
|
72
|
+
{ "x": 0.0001298933339117617, "y": 900 },
|
|
73
|
+
{ "x": 0.00016531699197661138, "y": 910 },
|
|
74
|
+
{ "x": 0.00010869962518734181, "y": 920 },
|
|
75
|
+
{ "x": 0.00008362474645062237, "y": 930 },
|
|
76
|
+
{ "x": 0.00008871988959618875, "y": 940 },
|
|
77
|
+
{ "x": 0.00008831691660884403, "y": 950 },
|
|
78
|
+
{ "x": 0.00011683195499426695, "y": 960 },
|
|
79
|
+
{ "x": 0.00013583444221829498, "y": 970 },
|
|
80
|
+
{ "x": 0.00009274681670258571, "y": 980 },
|
|
81
|
+
{ "x": 0.00004700567186479572, "y": 990 },
|
|
82
|
+
{ "x": 0.00003437296870193453, "y": 1000 },
|
|
83
|
+
{ "x": 0.0000709272676623104, "y": 1010 },
|
|
84
|
+
{ "x": 0.00013617751412114195, "y": 1020 },
|
|
85
|
+
{ "x": 0.00014496310556241516, "y": 1030 },
|
|
86
|
+
{ "x": 0.00004733793596694201, "y": 1040 },
|
|
87
|
+
{ "x": 0.00010092153592664301, "y": 1050 },
|
|
88
|
+
{ "x": 0.00009584003655414066, "y": 1060 },
|
|
89
|
+
{ "x": 0.00005905849013789329, "y": 1070 },
|
|
90
|
+
{ "x": 0.000029571164054978053, "y": 1080 },
|
|
91
|
+
{ "x": 0.000030412422008778623, "y": 1090 },
|
|
92
|
+
{ "x": 0.00003204823759575255, "y": 1100 },
|
|
93
|
+
{ "x": 0.000032648777153906824, "y": 1110 },
|
|
94
|
+
{ "x": 0.00006198445317654625, "y": 1120 },
|
|
95
|
+
{ "x": 0.00009139967076024808, "y": 1130 },
|
|
96
|
+
{ "x": 0.00009992328204468018, "y": 1140 },
|
|
97
|
+
{ "x": 0.00002787034301436937, "y": 1150 },
|
|
98
|
+
{ "x": 0.00007250451914182649, "y": 1160 },
|
|
99
|
+
{ "x": 0.00007142999633095643, "y": 1170 },
|
|
100
|
+
{ "x": 0.000052961753201928856, "y": 1180 },
|
|
101
|
+
{ "x": 0.000029412198775060606, "y": 1190 },
|
|
102
|
+
{ "x": 0.00004919603162680914, "y": 1200 },
|
|
103
|
+
{ "x": 0.000037933381433930804, "y": 1210 },
|
|
104
|
+
{ "x": 0.00005992469763182259, "y": 1220 },
|
|
105
|
+
{ "x": 0.00007718979287706467, "y": 1230 },
|
|
106
|
+
{ "x": 0.000047274992770840425, "y": 1240 },
|
|
107
|
+
{ "x": 0.000016128179347744672, "y": 1250 },
|
|
108
|
+
{ "x": 0.00003352763671499828, "y": 1260 },
|
|
109
|
+
{ "x": 0.00007028476104049716, "y": 1270 },
|
|
110
|
+
{ "x": 0.00006824433132469638, "y": 1280 },
|
|
111
|
+
{ "x": 0.00006606784417176838, "y": 1290 },
|
|
112
|
+
{ "x": 0.00006389521403221584, "y": 1300 },
|
|
113
|
+
{ "x": 0.00006741073153170593, "y": 1310 },
|
|
114
|
+
{ "x": 0.0000924836844130255, "y": 1320 },
|
|
115
|
+
{ "x": 0.00011041039671089426, "y": 1330 },
|
|
116
|
+
{ "x": 0.00009248281054515458, "y": 1340 },
|
|
117
|
+
{ "x": 0.00008888318987241821, "y": 1350 },
|
|
118
|
+
{ "x": 0.00009052361652035605, "y": 1360 },
|
|
119
|
+
{ "x": 0.00008662554555386286, "y": 1370 },
|
|
120
|
+
{ "x": 0.00009607196103648137, "y": 1380 },
|
|
121
|
+
{ "x": 0.00009365329078213675, "y": 1390 },
|
|
122
|
+
{ "x": 0.000057338154752471626, "y": 1400 },
|
|
123
|
+
{ "x": 0.0000560167761230761, "y": 1410 },
|
|
124
|
+
{ "x": 0.00007471847302152122, "y": 1420 },
|
|
125
|
+
{ "x": 0.000049954343326555706, "y": 1430 },
|
|
126
|
+
{ "x": 0.00003556769436490559, "y": 1440 },
|
|
127
|
+
{ "x": 0.00003376634202107939, "y": 1450 },
|
|
128
|
+
{ "x": 0.000010781958631043816, "y": 1460 },
|
|
129
|
+
{ "x": 0.000045030092768965315, "y": 1470 },
|
|
130
|
+
{ "x": 0.000039770792960315215, "y": 1480 },
|
|
131
|
+
{ "x": 0.00005955213092552287, "y": 1490 },
|
|
132
|
+
{ "x": 0.00010498897022372207, "y": 1500 },
|
|
133
|
+
{ "x": 0.00007835514251918588, "y": 1510 },
|
|
134
|
+
{ "x": 0.00008979807641142532, "y": 1520 },
|
|
135
|
+
{ "x": 0.00012557071723370332, "y": 1530 },
|
|
136
|
+
{ "x": 0.00010296845924292622, "y": 1540 },
|
|
137
|
+
{ "x": 0.00010477260325435698, "y": 1550 },
|
|
138
|
+
{ "x": 0.00011176407785855753, "y": 1560 },
|
|
139
|
+
{ "x": 0.0001122184588262509, "y": 1570 },
|
|
140
|
+
{ "x": 0.0001128850968813825, "y": 1580 },
|
|
141
|
+
{ "x": 0.00009001092590809327, "y": 1590 },
|
|
142
|
+
{ "x": 0.00007299745032663183, "y": 1600 },
|
|
143
|
+
{ "x": 0.00009466695556940677, "y": 1610 },
|
|
144
|
+
{ "x": 0.00009493139796750127, "y": 1620 },
|
|
145
|
+
{ "x": 0.00008231464135478582, "y": 1630 },
|
|
146
|
+
{ "x": 0.00009003956413694107, "y": 1640 },
|
|
147
|
+
{ "x": 0.00010258963457922835, "y": 1650 },
|
|
148
|
+
{ "x": 0.00009213159109180741, "y": 1660 },
|
|
149
|
+
{ "x": 0.00008610143636879602, "y": 1670 },
|
|
150
|
+
{ "x": 0.00008076060514466016, "y": 1680 },
|
|
151
|
+
{ "x": 0.00008485090074193449, "y": 1690 },
|
|
152
|
+
{ "x": 0.00011141782557700671, "y": 1700 },
|
|
153
|
+
{ "x": 0.00011135317433471232, "y": 1710 },
|
|
154
|
+
{ "x": 0.00011142590003632616, "y": 1720 },
|
|
155
|
+
{ "x": 0.00011135848953836769, "y": 1730 },
|
|
156
|
+
{ "x": 0.000108735601152788, "y": 1740 },
|
|
157
|
+
{ "x": 0.00010534770343873174, "y": 1750 },
|
|
158
|
+
{ "x": 0.00010487230041621642, "y": 1760 },
|
|
159
|
+
{ "x": 0.00010324201372605946, "y": 1770 },
|
|
160
|
+
{ "x": 0.00010688721065198478, "y": 1780 },
|
|
161
|
+
{ "x": 0.00009391836221725449, "y": 1790 },
|
|
162
|
+
{ "x": 0.0000766601064989404, "y": 1800 },
|
|
163
|
+
{ "x": 0.00009952371600438285, "y": 1810 },
|
|
164
|
+
{ "x": 0.00008436021495771773, "y": 1820 },
|
|
165
|
+
{ "x": 0.00003840971515498433, "y": 1830 },
|
|
166
|
+
{ "x": 0.00005837081402928077, "y": 1840 },
|
|
167
|
+
{ "x": 0.000057864385442360795, "y": 1850 },
|
|
168
|
+
{ "x": 0.00004758285668879414, "y": 1860 },
|
|
169
|
+
{ "x": 0.000037037894929359044, "y": 1870 },
|
|
170
|
+
{ "x": 0.00003625091592346037, "y": 1880 },
|
|
171
|
+
{ "x": 0.0000325161957298006, "y": 1890 },
|
|
172
|
+
{ "x": 0.000029774352133064488, "y": 1900 },
|
|
173
|
+
{ "x": 0.000023351718391978352, "y": 1910 },
|
|
174
|
+
{ "x": 0.00002540322089349471, "y": 1920 },
|
|
175
|
+
{ "x": 0.00003119674477351741, "y": 1930 },
|
|
176
|
+
{ "x": 0.00004581927470692599, "y": 1940 },
|
|
177
|
+
{ "x": 0.00005718758202884942, "y": 1950 },
|
|
178
|
+
{ "x": 0.00006710184996189453, "y": 1960 },
|
|
179
|
+
{ "x": 0.00005110588110607806, "y": 1970 },
|
|
180
|
+
{ "x": 0.00004687548589123271, "y": 1980 },
|
|
181
|
+
{ "x": 0.000046798938397334754, "y": 1990 },
|
|
182
|
+
{ "x": 0.000041772218166920143, "y": 2000 },
|
|
183
|
+
{ "x": 0.000042166044347587494, "y": 2010 },
|
|
184
|
+
{ "x": 0.000038162786968823866, "y": 2020 },
|
|
185
|
+
{ "x": 0.00003362259377209888, "y": 2030 },
|
|
186
|
+
{ "x": 0.0000392077011605209, "y": 2040 },
|
|
187
|
+
{ "x": 0.000045210425526075736, "y": 2050 },
|
|
188
|
+
{ "x": 0.000060427960495844965, "y": 2060 },
|
|
189
|
+
{ "x": 0.00006382005402064185, "y": 2070 },
|
|
190
|
+
{ "x": 0.00006879031821328452, "y": 2080 },
|
|
191
|
+
{ "x": 0.00009413885860555518, "y": 2090 },
|
|
192
|
+
{ "x": 0.00011674794343481974, "y": 2100 },
|
|
193
|
+
{ "x": 0.00008878134199888573, "y": 2110 },
|
|
194
|
+
{ "x": 0.00009026227584333445, "y": 2120 },
|
|
195
|
+
{ "x": 0.00010126264258233667, "y": 2130 },
|
|
196
|
+
{ "x": 0.0001128522778844747, "y": 2140 },
|
|
197
|
+
{ "x": 0.000145699065051847, "y": 2150 },
|
|
198
|
+
{ "x": 0.0001450709999822814, "y": 2160 },
|
|
199
|
+
{ "x": 0.00014440025826977377, "y": 2170 },
|
|
200
|
+
{ "x": 0.0001436680299253722, "y": 2180 },
|
|
201
|
+
{ "x": 0.00013783922079652097, "y": 2190 },
|
|
202
|
+
{ "x": 0.0001393862996411465, "y": 2200 },
|
|
203
|
+
{ "x": 0.00014157801692297198, "y": 2210 },
|
|
204
|
+
{ "x": 0.00013926174820786018, "y": 2220 },
|
|
205
|
+
{ "x": 0.00013384646484627347, "y": 2230 },
|
|
206
|
+
{ "x": 0.00009693602606416865, "y": 2240 },
|
|
207
|
+
{ "x": 0.00010178934247005474, "y": 2250 },
|
|
208
|
+
{ "x": 0.0001293399018532517, "y": 2260 },
|
|
209
|
+
{ "x": 0.00011728881190204258, "y": 2270 },
|
|
210
|
+
{ "x": 0.00011543454918928544, "y": 2280 },
|
|
211
|
+
{ "x": 0.00012772836814263966, "y": 2290 },
|
|
212
|
+
{ "x": 0.00012464240566257032, "y": 2300 },
|
|
213
|
+
{ "x": 0.0001295022203470494, "y": 2310 },
|
|
214
|
+
{ "x": 0.00009493136743588031, "y": 2320 },
|
|
215
|
+
{ "x": 0.00007618692637830786, "y": 2330 },
|
|
216
|
+
{ "x": 0.00012039912972534563, "y": 2340 },
|
|
217
|
+
{ "x": 0, "y": 2350 },
|
|
218
|
+
{ "x": 0, "y": 2350 },
|
|
219
|
+
{ "x": 0.00010497821358611048, "y": 2360 },
|
|
220
|
+
{ "x": 0.00011581151234828362, "y": 2370 },
|
|
221
|
+
{ "x": 0.00011622968020162541, "y": 2380 },
|
|
222
|
+
{ "x": 0.00011544940442726162, "y": 2390 },
|
|
223
|
+
{ "x": 0.0001082637004885864, "y": 2400 },
|
|
224
|
+
{ "x": 0.0001083089863295554, "y": 2410 },
|
|
225
|
+
{ "x": 0.00010209554440402611, "y": 2420 },
|
|
226
|
+
{ "x": 0.00009900264267347359, "y": 2430 },
|
|
227
|
+
{ "x": 0.00009870436495938077, "y": 2440 },
|
|
228
|
+
{ "x": 0.00009597823955998389, "y": 2450 },
|
|
229
|
+
{ "x": 0.00009359941624783809, "y": 2460 },
|
|
230
|
+
{ "x": 0.00009445547205528382, "y": 2470 },
|
|
231
|
+
{ "x": 0.00009467327598446551, "y": 2480 },
|
|
232
|
+
{ "x": 0.00009261224948257498, "y": 2490 },
|
|
233
|
+
{ "x": 0.00009253178027221938, "y": 2500 },
|
|
234
|
+
{ "x": 0.00009382588063026899, "y": 2510 },
|
|
235
|
+
{ "x": 0.00008073246257214217, "y": 2520 },
|
|
236
|
+
{ "x": 0.00009538046791852038, "y": 2530 },
|
|
237
|
+
{ "x": 0.0000953420927536753, "y": 2540 },
|
|
238
|
+
{ "x": 0.00009530396011849504, "y": 2550 },
|
|
239
|
+
{ "x": 0.0000957389449355601, "y": 2560 },
|
|
240
|
+
{ "x": 0.00009691527128223489, "y": 2570 },
|
|
241
|
+
{ "x": 0.00009753996793786724, "y": 2580 },
|
|
242
|
+
{ "x": 0.00009610500838962351, "y": 2590 },
|
|
243
|
+
{ "x": 0.0000969907154477446, "y": 2600 },
|
|
244
|
+
{ "x": 0.0000945887612980147, "y": 2610 },
|
|
245
|
+
{ "x": 0.00009524604897452584, "y": 2620 },
|
|
246
|
+
{ "x": 0.00009526610597910228, "y": 2630 },
|
|
247
|
+
{ "x": 0.0000934331099465717, "y": 2640 },
|
|
248
|
+
{ "x": 0.00009953701800039303, "y": 2650 },
|
|
249
|
+
{ "x": 0.00010019095576406525, "y": 2660 },
|
|
250
|
+
{ "x": 0.0001004344559337347, "y": 2670 },
|
|
251
|
+
{ "x": 0.00010132002082541581, "y": 2680 },
|
|
252
|
+
{ "x": 0.00010318435869772761, "y": 2690 },
|
|
253
|
+
{ "x": 0.00010317812814763318, "y": 2700 },
|
|
254
|
+
{ "x": 0.00010488889636626634, "y": 2710 },
|
|
255
|
+
{ "x": 0.00010764195266177912, "y": 2720 },
|
|
256
|
+
{ "x": 0.00010639209664161511, "y": 2730 },
|
|
257
|
+
{ "x": 0.00010668214177575604, "y": 2740 },
|
|
258
|
+
{ "x": 0.00010939117221825644, "y": 2750 },
|
|
259
|
+
{ "x": 0.0001127192900026018, "y": 2760 },
|
|
260
|
+
{ "x": 0.00011284468513560197, "y": 2770 },
|
|
261
|
+
{ "x": 0.00011392465518827446, "y": 2780 },
|
|
262
|
+
{ "x": 0.00011280823289748607, "y": 2790 },
|
|
263
|
+
{ "x": 0, "y": 2800 },
|
|
264
|
+
{ "x": 0, "y": 2800 },
|
|
265
|
+
{ "x": 0.00011384412637829917, "y": 2810 },
|
|
266
|
+
{ "x": 0.00011577191291542452, "y": 2820 },
|
|
267
|
+
{ "x": 0.0001160418965178976, "y": 2830 },
|
|
268
|
+
{ "x": 0.00012345120894542865, "y": 2840 },
|
|
269
|
+
{ "x": 0.00012813328369756018, "y": 2850 },
|
|
270
|
+
{ "x": 0.00012835314518069363, "y": 2860 },
|
|
271
|
+
{ "x": 0.00012806775935560752, "y": 2870 },
|
|
272
|
+
{ "x": 0.00012347213584351752, "y": 2880 },
|
|
273
|
+
{ "x": 0.00012441428335334626, "y": 2890 },
|
|
274
|
+
{ "x": 0.00012435550618096472, "y": 2900 },
|
|
275
|
+
{ "x": 0.00012546086374425522, "y": 2910 },
|
|
276
|
+
{ "x": 0.0001260685719729898, "y": 2920 },
|
|
277
|
+
{ "x": 0.00012740743010361771, "y": 2930 },
|
|
278
|
+
{ "x": 0.00013831090128037138, "y": 2940 },
|
|
279
|
+
{ "x": 0.00013725201723314252, "y": 2950 },
|
|
280
|
+
{ "x": 0.00012485561584900116, "y": 2960 },
|
|
281
|
+
{ "x": 0.00012314818473263957, "y": 2970 },
|
|
282
|
+
{ "x": 0.0001329673280975034, "y": 2980 },
|
|
283
|
+
{ "x": 0.00014717745016411715, "y": 2990 },
|
|
284
|
+
{ "x": 0.00018591861733667622, "y": 3000 },
|
|
285
|
+
{ "x": 0.00016483586419637432, "y": 3010 },
|
|
286
|
+
{ "x": 0.00012921309124353894, "y": 3020 },
|
|
287
|
+
{ "x": 0.00011851799286067394, "y": 3030 },
|
|
288
|
+
{ "x": 0.00009813200813991976, "y": 3040 },
|
|
289
|
+
{ "x": 0.000129334066824471, "y": 3050 },
|
|
290
|
+
{ "x": 0.00013052327737147218, "y": 3060 },
|
|
291
|
+
{ "x": 0.00013793027962408856, "y": 3070 },
|
|
292
|
+
{ "x": 0.00014372170973915986, "y": 3080 },
|
|
293
|
+
{ "x": 0.00014546143870677669, "y": 3090 },
|
|
294
|
+
{ "x": 0.00012886382300053155, "y": 3100 },
|
|
295
|
+
{ "x": 0.000145923091722502, "y": 3110 },
|
|
296
|
+
{ "x": 0.00015233788436358334, "y": 3120 },
|
|
297
|
+
{ "x": 0.00015157469376513567, "y": 3130 },
|
|
298
|
+
{ "x": 0.000151330311143013, "y": 3140 },
|
|
299
|
+
{ "x": 0.00010771838036189137, "y": 3150 },
|
|
300
|
+
{ "x": 0.00011842595336324872, "y": 3160 },
|
|
301
|
+
{ "x": 0.0001827135892978097, "y": 3170 },
|
|
302
|
+
{ "x": 0.00014281459937988674, "y": 3180 },
|
|
303
|
+
{ "x": 0.00013820801338620286, "y": 3190 },
|
|
304
|
+
{ "x": 0.00017142396682537044, "y": 3200 },
|
|
305
|
+
{ "x": 0.00016474654527969345, "y": 3210 },
|
|
306
|
+
{ "x": 0.00017582595276976305, "y": 3220 },
|
|
307
|
+
{ "x": 0.00017458251471158824, "y": 3230 },
|
|
308
|
+
{ "x": 0.0001486835185800746, "y": 3240 },
|
|
309
|
+
{ "x": 0.0001741611415076012, "y": 3250 },
|
|
310
|
+
{ "x": 0.00017548932229236044, "y": 3260 },
|
|
311
|
+
{ "x": 0.00012071787795772261, "y": 3270 },
|
|
312
|
+
{ "x": 0.00013753074503063706, "y": 3280 },
|
|
313
|
+
{ "x": 0.00017516864576478782, "y": 3290 },
|
|
314
|
+
{ "x": 0.00014894444206379226, "y": 3300 },
|
|
315
|
+
{ "x": 0.0001488121753294082, "y": 3310 },
|
|
316
|
+
{ "x": 0.00015838364252758502, "y": 3320 },
|
|
317
|
+
{ "x": 0.0001452770158017279, "y": 3330 },
|
|
318
|
+
{ "x": 0.00013671027850916583, "y": 3340 },
|
|
319
|
+
{ "x": 0.00010951080259012435, "y": 3350 },
|
|
320
|
+
{ "x": 0.00008812423759730889, "y": 3360 },
|
|
321
|
+
{ "x": 0.00010940275058716526, "y": 3370 },
|
|
322
|
+
{ "x": 0.00010032604325065721, "y": 3380 },
|
|
323
|
+
{ "x": 0.00012702252332573403, "y": 3390 },
|
|
324
|
+
{ "x": 0.00015228827147122684, "y": 3400 },
|
|
325
|
+
{ "x": 0.000145615092578942, "y": 3410 },
|
|
326
|
+
{ "x": 0.00015623831227099398, "y": 3420 },
|
|
327
|
+
{ "x": 0.00016130579429686262, "y": 3430 },
|
|
328
|
+
{ "x": 0.00016087458304324384, "y": 3440 },
|
|
329
|
+
{ "x": 0.00016019999349805577, "y": 3450 },
|
|
330
|
+
{ "x": 0.0001585634196473117, "y": 3460 },
|
|
331
|
+
{ "x": 0.0001255510527843096, "y": 3470 },
|
|
332
|
+
{ "x": 0.0001242888754155686, "y": 3480 },
|
|
333
|
+
{ "x": 0.00013154041730570378, "y": 3490 }
|
|
334
|
+
],
|
|
335
|
+
"pointBackgroundColor": "#3366cc",
|
|
336
|
+
"borderColor": "#3366cc",
|
|
337
|
+
"borderDash": [],
|
|
338
|
+
"spanGaps": false,
|
|
339
|
+
"borderJoinStyle": "round",
|
|
340
|
+
"backgroundColor": "transparent",
|
|
341
|
+
"pointRadius": 2,
|
|
342
|
+
"pointHoverRadius": 5,
|
|
343
|
+
"pointHitRadius": 5
|
|
344
|
+
}
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
"options": {
|
|
348
|
+
"maintainAspectRatio": false,
|
|
349
|
+
"aspectRatio": null,
|
|
350
|
+
"animation": false,
|
|
351
|
+
"hover": { "mode": "nearest", "intersect": true },
|
|
352
|
+
"elements": { "line": { "pointStyle": "circle", "showLine": true } },
|
|
353
|
+
"scales": {
|
|
354
|
+
"x": {
|
|
355
|
+
"type": "linear",
|
|
356
|
+
"position": "top",
|
|
357
|
+
"beginAtZero": false,
|
|
358
|
+
"reverse": false,
|
|
359
|
+
"title": {
|
|
360
|
+
"display": 25,
|
|
361
|
+
"text": "Max wear groove depth [m]",
|
|
362
|
+
"padding": 0
|
|
363
|
+
},
|
|
364
|
+
"ticks": { "stepSize": null },
|
|
365
|
+
"grid": {}
|
|
366
|
+
},
|
|
367
|
+
"y": {
|
|
368
|
+
"type": "linear",
|
|
369
|
+
"beginAtZero": false,
|
|
370
|
+
"reverse": true,
|
|
371
|
+
"title": { "display": 13, "text": "Casing MD [m]", "padding": 0 },
|
|
372
|
+
"ticks": {},
|
|
373
|
+
"grid": {}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"plugins": {
|
|
377
|
+
"datalabels": { "display": false },
|
|
378
|
+
"annotation": { "annotations": null },
|
|
379
|
+
"zoom": {
|
|
380
|
+
"pan": { "enabled": false, "mode": "xy" },
|
|
381
|
+
"zoom": {
|
|
382
|
+
"mode": "xy",
|
|
383
|
+
"drag": {
|
|
384
|
+
"enabled": false,
|
|
385
|
+
"threshold": 3,
|
|
386
|
+
"backgroundColor": "rgba(0,0,0,0.1)",
|
|
387
|
+
"borderColor": "rgba(0,0,0,0.2)",
|
|
388
|
+
"borderWidth": 1
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"tooltip": {
|
|
393
|
+
"enabled": true,
|
|
394
|
+
"mode": "nearest",
|
|
395
|
+
"intersect": true,
|
|
396
|
+
"padding": 8,
|
|
397
|
+
"callbacks": {}
|
|
398
|
+
},
|
|
399
|
+
"legend": {
|
|
400
|
+
"position": "bottom",
|
|
401
|
+
"display": true,
|
|
402
|
+
"align": "center",
|
|
403
|
+
"labels": { "boxHeight": 6, "boxWidth": 6, "usePointStyle": true }
|
|
404
|
+
},
|
|
405
|
+
"htmlLegend": null
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
;
|
|
410
|
+
|
|
411
|
+
export default _default;
|