Share My Creation Coinwatch (Available on Macstore)

Hello,

Thanks to Erel and @JanPRO 's great tool , my app is on the mac store. It is a simple app to watch cryptocurrency prices easily and create your portfolio to follow total value .



I put it on the app store for 3.99$ so not providing a link here but if someone wants to check the app I can send it for free .

Regards
 

tufanv

Expert
Licensed User
Longtime User
Thanks ,

This is with the help of every member on this forum !

Thanks to all.
 

elpic76

Member
Licensed User
Longtime User
Hi tufanv,
thanks for your time, I'd appreciate very much a sample code.
Best Regards.
 

tufanv

Expert
Licensed User
Longtime User
Hi tufanv,
thanks for your time, I'd appreciate very much a sample code.
Best Regards.
B4X:
Dim jg As JSONGenerator
                jg.Initialize2(listegrafik)
                Dim jg2 As JSONGenerator
                jg2.Initialize2(listetarihler)
                
                WebView1.LoadHtml($"
            <canvas id="linechart" width=${WebView1.prefWidth-10dip} height=${WebView1.prefHeight-20dip}></canvas>
            <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.0/Chart.min.js"></script>
            <script>
            var ctx = document.getElementById("linechart");
            ctx.style.backgroundColor = 'rgba(255,255,255,255)';
var linechart = new Chart(ctx,{
  type: 'line',
  data: {
    labels: ${jg2.ToString},
    datasets: [{
        data: ${jg.ToString},
        label: "${l2}",
        borderColor: "rgba(255, 116, 0, 1)",
        fill: true,
        backgroundColor: "rgba(255, 116, 0, 0.7)"

      }
    ]
  },
  options: {
    responsive: false,
    animation: false,
    title: {
      display: false,
      text: 'World population per region (in millions)'
    }
  }
});
</script>
        "$)

Listegrafik is the values for the data in this example ( y axis )
and listetarihler is the dates for the data ( x axis )

you can add random 5 values to those lists to test it
 
Top