Forum Replies Created by 9Dan7

Viewing 8 posts - 1 through 8 (of 8 total)
  • in reply to: Radar Chart #32497

    Hello!

    I’m here again! One of my teammates has been purchase the license but, currently we are developing some tools that needs the radar chart. Do you have any good news about this?

    Have a good day!

    in reply to: DateTime to Double #27674
    in reply to: Image in dataSeries. #26717

    I’m talking about the Labels from the right “Others” “Filesharing” “Web browsing” “Real-time”

    https://canvasjs.com/javascript-charts/stacked-column-100-chart/

    in reply to: Blurry column charts #26653

    It happens to me when I resize the screen, but you can refresh your page to fix it.

    in reply to: base64 #26578

    What i do is:

    Create a Form with POST Method and a text area inside with style=”display:none;” to hidde it.

    <form action="/GetBase64Chart/" method="post" name="formToSendBase64" id="formToSendBase64">
        <textarea style="display:none;" id="txtareaBase64" name="txtareaBase64"> </textarea>
    </form>

    and with JS i create a button to “Export” the Base64 to the backend. Then i get the base64 of the canvas chart and i passed it to the textarea value like in the next code…

    $("#exportButton").click(function () {
                    var canvas = $("#Chart .canvasjs-chart-canvas").get(0);
    
                    var dataURL = canvas.toDataURL();
    
                    document.getElementById("txtareaBase64").value = dataURL;
    
                    var form = document.getElementById("formToSendBase64");
    
                    form.submit();
                });
    in reply to: Radar Chart #26216

    Me2.

    in reply to: How to copy chart into Clipboard? #25108

    It just works on Word. If you copy the chart you can just paste it on word :( NOT Excel NOT PowerPoint.

    in reply to: How to copy chart into Clipboard? #25106

    Hi! I re-code* a Js Fiddle with code from everywhere. I hope you can use it :)

    • This reply was modified 4 years, 11 months ago by 9Dan7. Reason: wrong word
Viewing 8 posts - 1 through 8 (of 8 total)