Forum Replies Created by Vishwas R

Viewing 15 posts - 1,501 through 1,515 (of 1,608 total)
  • in reply to: Line Graph Bugs #11673

    Please check the updated jsfiddle with working script(which you have named it as proj4.js).

    in reply to: Line Graph Bugs #11669

    d3.csv is an asynchronous method, where the code inside the callback function will run when the data is loaded whereas code outside the callback function will run immediately after the request is made, when the data is not yet available. Because of this the chart was rendered with no data but title and legend. When you resize, chart will be re-rendered, data would be updated from csv by then.

    d3.csv execution:

    first();
    d3.csv("path/to/file.csv", function(rows) {
      third();
    });
    second();

    For more info refer stackoverflow.

    Here is your working code. (Note:CSV and function related to checkbox-Abby has been updated and working fine, kindly follow same for other checkboxes aswell. proj4.js file has been saved and linked from codepen).

    in reply to: store charts in external js file #11665

    You can store the complete chart as a function in external JS file. Load that JS file and call the function in multiple HTML pages where you like to show chart. Check this example.

    in reply to: how to create Multiple Charts on page #11655

    We are unable to know the issue just by looking at the screenshots, it would help us resolve issue if we look into the code. Can you please create a jsfiddle, so that we can look into it and help you out?

    in reply to: Data Click Browser Issue(IE) #11647

    muralimnmcse,

    Click event seems to be working fine across all browsers including Microsoft Edge.
    Data-Click Event

    Data-Click Event

    If you still find the issue, please create a jsfiddle and provide the browser version detail, so that we can look into the issue and resolve it.

    in reply to: Reduce animation initial delay #11625

    Anjali,

    We were unable to observe any delay in chart load. Can you please create a jsfiddle, so that we can look in to it and help you out?

    in reply to: Legends to Line Graph? #11588

    You need to set showInLegend: true to enable legends, which defaults to false. Here is the working jsfiddle.

    in reply to: place axis x up #11579

    [update]

    We have just released v1.9.5 Beta with Multiple Y axis & Secondary X axis support. Please refer to the release blog for more information.

    [Update]

    We have just released v1.8.5 Beta-1 which supports axis-reversal. Please refer to the release blog for more information.

    in reply to: Reverse Y axis #11578

    [Update]

    We have just released v1.8.5 Beta-1 which supports axis-reversal. Please refer to the release blog for more information.

    in reply to: reverse Y axis #11577

    [Update]

    We have just released v1.8.5 Beta-1 which supports axis-reversal. Please refer to the release blog for more information.

    in reply to: Invert Y axis #11576

    [Update]

    We have just released v1.8.5 Beta-1 which supports axis-reversal. Please refer to the release blog for more information.

    in reply to: Reverse YAxis in Line chart #11575

    [Update]

    We have just released v1.8.5 Beta-1 which supports axis-reversal. Please refer to the release blog for more information.

    in reply to: How to use viewport on dates #11532

    Mitul,

    You can set viewportMinimum to one month less than the last dataPoint. Here is an example.

    in reply to: How to use viewport on dates #11524

    Mitul,

    You can use viewportMinimum and/or viewportMaximum to zoom to a specific region by default or to handle zooming programmatically.

    in reply to: Data Store #11487

    Simon,
    Check these links for your working code. Data from external CSV, Data saved as String.

Viewing 15 posts - 1,501 through 1,515 (of 1,608 total)