Hello, i want to make last tooltip in series always visible, regardless of the hover effect. I found how to make all tooltips always visible, but it does`t help. Pls help me
my code:
<script> var stats1 = [{ "value": 15, "date":"24/01/16"},{ "value": 13, "date":"26/01/16"}];    function createChart() {        $("#chart1").kendoChart({            title: {                text: ""            },            dataSource: {                data: stats1            },            seriesDefaults: {                    type: "area"                },            series: [{                type: "area",                field: "value",            }],            categoryAxis: [{                labels: {                    format: "d/M/yyyy",                    rotation: -90                },                field: "date",                baseUnit: "days",               axisCrossingValues: [100]            }],            valueAxis: {                    labels: {                        format: "N0"                    }                },             tooltip: {                    visible: true,                    format: "{0}%",                    template: "#= kendo.format('{0:dd/MM/yyyy}',category) #: #= value #"                }                   });    }    $(document).ready(createChart);    </script>