ods-charts
Advanced tools
Comparing version 0.1.0-alpha.4 to 0.1.0-alpha.5
@@ -72,2 +72,15 @@ import { ODSChartsCSSThemesNames } from '../css-themes/css-themes'; | ||
/** | ||
* @experimental | ||
* Whether confine popover content in the view rect of chart instance by rendering the arrow close to the mouse position. | ||
* | ||
* - true: to display tooltip inside the chart at any cost | ||
* - false: to display tooltip normally | ||
* | ||
* @remarks | ||
* Right now, this experimental option is not linked to the default behavior of Apache ECharts `tooltip.confine` option. | ||
* | ||
* So `tooltipConfine` can't be used at the same time as Apache ECharts `tooltip.confine` option. They are mutually exclusive. | ||
*/ | ||
tooltipConfine?: boolean; | ||
/** | ||
* tooltipTimeout is used to set the timeout in milliseconds of the tooltip display. | ||
@@ -74,0 +87,0 @@ * |
@@ -9,2 +9,3 @@ import { ODSChartsCSSThemeDefinition } from '../css-themes/css-themes'; | ||
private tooltipDelay; | ||
private tooltipStyle; | ||
private constructor(); | ||
@@ -11,0 +12,0 @@ static addPopoverManagement(popoverDefinition: ODSChartsPopoverDefinition, popoverConfig: ODSChartsPopoverConfig): ODSChartsPopover; |
{ | ||
"name": "ods-charts", | ||
"description": "ODS Charts is based on Apache ECharts and provides Orange charts components.", | ||
"version": "0.1.0-alpha.4", | ||
"version": "0.1.0-alpha.5", | ||
"author": "", | ||
@@ -15,20 +15,22 @@ "contributors": [], | ||
"build": "webpack", | ||
"copyright-year": "node build/bump-copyright-year.mjs", | ||
"netlify": "npm run build ; cp -R dist docs/ ; npm run typedoc", | ||
"serve": "serve .", | ||
"serve:vue": "serve test/vue/dist/", | ||
"serve:angular": "serve test/angular-ngx-echarts/dist/angular/", | ||
"serve:angular-echarts": "serve test/angular-echarts/dist/angular-echarts/", | ||
"serve:any": "serve", | ||
"serve:react": "serve test/react/build/", | ||
"serve:any": "serve", | ||
"typedoc": "typedoc --out docs/api src/ods-charts.ts --disableSources --excludePrivate --excludeProtected --readme docs/README.md" | ||
"serve:vue": "serve test/vue/dist/", | ||
"typedoc": "typedoc --out docs/api src/ods-charts.ts --disableSources --excludePrivate --excludeProtected --readme docs/README.md", | ||
"watch": "webpack --watch --mode development" | ||
}, | ||
"devDependencies": { | ||
"echarts": "^5.4.3", | ||
"echarts": "^5.5.0", | ||
"serve": "^14.2.1", | ||
"ts-loader": "^9.5.1", | ||
"typedoc": "^0.25.7", | ||
"typedoc": "^0.25.9", | ||
"typescript": "^5.3.3", | ||
"webpack": "^5.90.0", | ||
"webpack": "^5.90.3", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
352965
3890