add url to hc_vistime chart”改为“为hc_vistime图表添加URL”,可以使用以下示例代码:
Highcharts.chart('container', { title: { text: 'Visits over time' }, xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }, yAxis: { title: { text: 'Visits' } }, series: [{ name: 'Total Visits', data: [29, 71, 106, 129, 144, 176, 135, 148, 216, 194, 95, 54], url: 'http://example.com' }] });
此示例为hc_vistime图表添加了一个数据系列,并且通过在数据系列中添加“url”属性,可以在单击数据点时将导航到指定的URL。