Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying add some text to the chart's column. I did js method, but I have some issue with chart.

.Series(series => series.Column(column => column.NewUsers)
    .Name("New users")
    .Color("#007DC5")
    //.Visual("testFunc")) <- it's working
    .Notes(n => n.Visual("testFunc"))) <- it doesn't

As you can see, commented line is working, but it's overriding columns, so I can see only the texts instead of a columns.

When I try it with the last lane (which should add text to column, not switch text with column) it's not even entering to my js method

question from:https://stackoverflow.com/questions/65843496/kendo-mvc-chart-problem-with-call-js-method

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
956 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...