Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-consistent-default-export-name": "^0.0.15",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.14",
"eslint-plugin-jsdoc": "^50.7.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-material-ui": "workspace:^",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.2.2",
"eslint-plugin-testing-library": "^7.4.0",
"fast-glob": "^3.3.3",
"format-util": "^1.0.5",
"fs-extra": "^11.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ export type ColorGetter<TSeriesType extends ChartSeriesType> = TSeriesType exten
/**
* Transforms charts config to a color getter.
* If dataIndex is not defined, it falls back to the series color.
* @param series - The series configuration.
* @param xAxis - The computed x-axis configuration.
* @param yAxis - The computed y-axis configuration.
* @param zAxis - The defaulted z-axis configuration.
* @return A function that takes a data index and returns a color string.
*/
export type ColorProcessor<TSeriesType extends ChartSeriesType> = (
series: DefaultizedSeriesType<TSeriesType>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,11 @@ export type TooltipGetter<TSeriesType extends ChartSeriesType> = (params: {
| null;

/**
* Return an array of the axes that should trigger the tooltip.
* @returns an array of the axes that should trigger the tooltip.
*
* If `axisId` is set to undefined, the default axis will be used.
*
* @param series A map of series ID to their series configuration.
*/
export type AxisTooltipGetter<
TSeriesType extends ChartSeriesType,
Expand Down
59 changes: 30 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.