Forum Replies Created by Vishwas R

Viewing 15 posts - 1,471 through 1,485 (of 1,601 total)
  • Prasanth,

    You can store all generated dataPoints, according to equation, in an array and assign it to chart dataPoints. Here is an example.

    in reply to: How to add buttons or labels on Chart? #12093

    Eshwar,

    toolTip, click events are applied even to dataPoint with zero y-value. Here is the updated fiddle.

    toolTip and click event for zero y-value dataPoint


    Vishwas R
    Team CanvasJS

    in reply to: Highlight the 0 value x axis value for stacked column chart #12092

    Jenilkanani,

    If y-value is zero, when you mouse-hover the axisX line at the corresponding x-value toolTip will be shown. Check the screenshot below. If the y-value (zero) is not present in first dataSeries, you can set toolTip.shared to true to show the zero value in toolTip.

    toolTip shown for y-vlaue zero

    If this doesn’t solve your requirement, kindly create a jsfiddle, so that we can look into your requirement properly and help you out.

    in reply to: How to change the area color along X axis. #12091

    Wazabe,

    You can use stripLines to achieve this. Check this example.

    in reply to: Chart Not Showing in Mozilla or IE #12077

    Stefanaki,

    Its not bug, we observed that the x-value you are providing is not in JavaScript Date-Time string format. Please refer to this link for JavaScript Date-Time String Formats. And here is the working fiddle.

    Check the screenshots of working fiddle browsed in IE and Firefox.

    Line Chart With Date Time Axis (IE)

    Line Chart with Date Time Axis (Firefox)

    —-
    Vishwas R
    Team CanvasJS

    in reply to: Support of Multiple Y-Axis #12072

    Alex,

    Yes Multiple Y-axis is on our roadmap. And will be released in September.

    in reply to: Data point click event problem #11987

    Xiaosongzou,

    Thanks for reporting. We will look into the issue and get back to you at the earliest.

    The issue is with the css-styling. Instead of using float:left, you can use display: inline-block. Check this example.

    in reply to: Mobile touch screen support #11794

    [UPDATE]
    We’ve fixed this issue in the latest build. Please, do download the latest version and let us know your feedback.

    Whenever you move finger / pointer on the chart, the chart has to know if you are trying to scroll or interact with the chart. Hence we have implemented a behavior where if you hold the finger for a while on the chart, it captures the event and doesn’t scroll. On the other hand, if you move pointer / finger quickly without pausing, it allows you to scroll. Can you try as mentioned above and let us know?

    Also, can you please let us know your Device Model, OS, and Browser Version?

    • This reply was modified 7 years, 4 months ago by Bivek Singh.

    Kindly refer this page to know step-by-step approach to create dynamic charts. If that doesn’t help, kindly create jsfiddle with the issue, so that we can look into it and help you out.

    in reply to: How to add buttons or labels on Chart? #11769

    @quocnamvnn-vnn,

    You can hide / unhide dataSeries based on click of legends. Please refer to this documentation page for step-to-step tutorial on the same.
    Hide / Unhide dataseries by legend click.


    Vishwas R
    Team CanvasJS

    in reply to: Zoom / Pan button default to pan with multiple charts #11754

    Crees,

    When you have multiple charts in a page, there will be multiple childElement (zoom/pan buttons). So automatically clicking all childElement will solve the issue.

    var parentElement = document.getElementsByClassName("canvasjs-chart-toolbar");
    var childElement = document.getElementsByTagName("button");
    for(var i=0;i<childElement.length;i++){
      if(childElement[i].getAttribute("state") === "pan"){
        childElement[i].click();
      }
    }

    Here is updated example.

    in reply to: How can I use PHP MySQL Dynamic data #11745

    Yes, its possible to update data for every ‘n’ seconds (10seconds in your case). Initially you can render chart with first set of data from an external JSON or the data received from the php service. And while updating you can fetch data from new source where new set of data is present and re-render the chart with new set of data. Here is an example.

    in reply to: Mysql timestamp convert string to number. #11744

    Claus,

    Here is an example to get chart data from external json.

    in reply to: axisX label set #11739

    Ernest,

    It seems that the ArrayList you are storing is not string and result (2016-08-04 = 2004) is calculated at that instance and stored. Storing string within the array-list would solve the issue.

    If your arraylist looks like al4 = [2016-07-25, 2016-07-26, 2016-08-01, 2016-08-02, 2016-08-03, 2016-08-04, 2016-08-05, 2016-08-08, 2016-08-09, 2016-08-10]; changing it to al4 = ["2016-07-25", "2016-07-26", "2016-08-01", "2016-08-02", "2016-08-03", "2016-08-04", "2016-08-05", "2016-08-08", "2016-08-09", "2016-08-10"]; would solve the issue.

Viewing 15 posts - 1,471 through 1,485 (of 1,601 total)