@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative JSON Schema syntax that can be used to describe the content of data interpretation reports.
30 lines (27 loc) • 1.27 kB
JavaScript
import { createMetricName } from './createMetricName.js';
import { createMetricValue } from './createMetricValue.js';
import { createDeltaValue, createRatioValue } from './createCompare.js';
import { createOtherMetricValue } from './createOtherMetricValue.js';
import { createContributeRatio } from './createContributeRatio.js';
import { createDimensionValue } from './createDimensionValue.js';
import { createProportion } from './createProportion.js';
import { createTimeDesc } from './createTimeDesc.js';
import { createTrendDesc } from './createTrendDesc.js';
/**
* export all entity phrase factory functions.
* user can use these factory functions to create entity phrase descriptors quickly to keep the original descriptor.
*/
var presetPlugins = [
createMetricName(),
createMetricValue(),
createDeltaValue(),
createRatioValue(),
createOtherMetricValue(),
createContributeRatio(),
createDimensionValue(),
createProportion(),
createTimeDesc(),
createTrendDesc(),
];
export { createContributeRatio, createDeltaValue, createDimensionValue, createMetricName, createMetricValue, createOtherMetricValue, createProportion, createRatioValue, createTimeDesc, createTrendDesc, presetPlugins };
//# sourceMappingURL=index.js.map