B4J Question [BANanoVueMaterial] ChartKick to show label value

khng

Member
Licensed User
Longtime User
Hi @Mashiane,

the Extensions Demo for chartkick with the following code

B4X:
    Dim provChart As VMChartKick
    provChart.Initialize(vue, "provChart", Me)
    provChart.SetLineChart.SetWidth("300px").SetHeight("300px")
    provChart.AddXYMap(CreateMap("2013-02-10":11,"2013-02-11":6,"2013-02-12":3,"2013-02-13":2,"2013-02-14":5, _
    "2013-02-15":3,"2013-02-16":8,"2013-02-17":6,"2013-02-18":6,"2013-02-19":12,"2013-02-20":5,"2013-02-21":5, _
    "2013-02-22":3,"2013-02-23":1,"2013-02-24":10,"2013-02-25":1,"2013-02-26":3,"2013-02-27":2, _
    "2013-02-28":3,"2013-03-01":2,"2013-03-02":8))
    provChart.SetTitle("My Chart")
    cont.AddComponent(1,1, provChart.tostring)

shows

1591943533880.png



is it possible for chartkick to display label value as the following chart?

1591943617852.png
 
Top