export let data1 = [
{ x: 1, y: 6.3, country:'value 6.3' },
//other configurations here
];
export let tool = {
enable: true,
format: '${point.tooltip}'
};
//other configurations here
<SeriesCollectionDirective>
<SeriesDirective dataSource={data1} xName='x' yName='y' width={2} marker={{visible:true}}type='Line' tooltipMappingName='country'>
</SeriesDirective>
</SeriesCollectionDirective>
//other configurations here |