0

我有一个包含 2 个系列的图表 - 一个是线系列,另一个是条形系列。我需要在图表上的一个点上添加一个标记作为第三系列,但找不到这样做的方法。当前代码:

  $("#lowerDayschart").kendoChart({
                width: "200px",
                height: "190px",
                title: {
                    text: "Title"
                },
                legend: {
                    position: "bottom"
                },
                seriesDefaults: {
                    type: "column"
                },
                series: [
                        {
                            name: "My Name",
                            data: [1, 2, 3, 4, 4, 4, 5, 5, 5, 5, 4, 4, 4, 4, 3, 2, 1],
                            gap: 0,
                            spacing: 0,
                            type: "column",
                            YAxisType: 'primary'
                        }, {
                            data: [1, 2, 3, 4, 4, 4, 5, 5, 5, 5, 4, 4, 4, 4, 3, 2, 1],
                            gap: 0,
                            spacing: 0,
                            type: "line",
                            markers: {
                                visible: false
                            },
                            YAxisType: 'secondary'
                        }],
                valueAxis: {
                    line: {
                        visible: false
                    }
                },
                categoryAxis: {
                    categories: ["-8", "", "", "", "", "", "", "", "0", "", "", "", "", "", "", "", "8"],
                    majorGridLines: {
                        visible: false
                    }
                },
                tooltip: {
                    visible: true,
                    format: "{0}"
                }
            });

目前图表:

在此处输入图像描述

我想要的图表:

在此处输入图像描述

4

0 回答 0