How to change the series icon shape in Kendo UI linechart?Can I use custom icon? -


I know that the default icon is "circle", now I want to change the icon size. The total icon size is only "circle", "squire", "triangle", "cross". Can there be a Joseph custod icon? I use these codes in the Databende event, but I do not think so.

  var colorArr = new Array ("#FF 20000", "#FF8C00", "# 006400", "# 40ADD," "# 800080"); Var iconShapeArr = newArray ("circle", "squire", "triangle", "cross"); Function on databound (e) {var chart = E. Var series = chart.options.series; (Chart index.series [index] .color = colorArr [index]; Chart.options.series [index]. Markers.background = colorArr [index]; // chart.options.series [index] .notes.icon.shape = "class"; }  

As far as I know, it can not be custom. Like these types: Databound (e) {var colorArr = ["# FF0000", "# FF8C00", "# 006400", "# 40E0D0", "# 800080"]

  function ; Var iconShapeArr = ["triangle", "square", "triangle", "cross"]; Var chart = E. Shender; Var series = chart.options.series; (Chart index.series [index] .color = colorArr [index]; Chart.options.series [index]. Markers.background = colorArr [index]; Chart.options.series [index]. Markers.type = iconShapeArr [index]; }}  

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -