@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
11 lines (9 loc) • 370 B
JavaScript
import { getChartsLocalization } from "./utils/getChartsLocalization.js";
// This object is not Partial<ChartsLocaleText> because it is the default values
export const enUSLocaleText = {
// Overlay
loading: 'Loading data…',
noData: 'No data to display'
};
export const DEFAULT_LOCALE = enUSLocaleText;
export const enUS = getChartsLocalization(enUSLocaleText);