Forum Replies Created by Vishwas R

Viewing 15 posts - 151 through 165 (of 1,628 total)
  • in reply to: Display evaluation objects on line chart #38082

    @stefan-alfs,

    You can use markers to show circle, square, triangle or cross in line charts. Please refer to documentation for more information along with live examples that you can try out.
    JavaScript Chart Markers

    If this doesn’t fit your requirements can you kindly share some example or pictorial representation of what you are looking for so that we can understand your requirement better & help you out?


    Vishwas R
    Team CanvasJS

    in reply to: Multiple React Charts on a Page #38047

    @langersp,

    Rendering multiple charts in a page seems to be working fine in react. Please take a look at this Stackblitz for an example.
    React Multiple Charts in a Page

    If you are still facing issue, can you kindly create a demo reproducing the issue & share it with us so that we can understand the scenario better and help you resolve?


    Vishwas R
    Team CanvasJS

    @ravidasari,

    Sorry, it’s not possible to know if the version of library is licensed or unlicensed programmatically as of now. But it sounds like a good option to have, we will revisit the same for future versions.


    Vishwas R
    Team CanvasJS

    Matt,

    We don’t have official npm package as of now. The package that you are using is a third-party one. Kindly download the official react-component from our download page. Please refer to this documentation page for step-by-step instruction on integration.


    Vishwas R
    Team CanvasJS

    @ravidasari,

    CanvasJS commercial version doesn’t carry any watermark or credit link whereas trial version do. To download licensed version of CanvasJS, kindly login to My Account page with the registered mail from which you have purchased the license.


    Vishwas R
    Team CanvasJS

    @frevd,

    The auto-generated container-id seems to be working fine, container-id are not dependent on the timestamp. Kindly download react chart-component from our download page & try if it works fine. If you are still facing issue with latest version of chart-component, kindly create sample project reproducing the issue you are facing and share it with us over Google-Drive or Onedrive so that we can run it locally at our end, understand the scenario better and help you resolve.


    Vishwas R
    Team CanvasJS

    in reply to: zoom into open-ended regions not working #37969

    @scroteau,

    Thanks for sharing the use-case. We will look into it & fix the same in the future versions.


    Vishwas R
    Team CanvasJS

    in reply to: Bar chart problem in IOS #37936

    @punniyamoorthy,

    Chart seems to be working fine with the chart-options that you have shared. Can you kindly create sample project reproducing the issue you are facing & share it with us over Google-Drive or Onedrive so that we can look into the complete code, run it locally to understand the scenario better and help you out?


    Vishwas R
    Team CanvasJS

    in reply to: zoom into open-ended regions not working #37815

    @scroteau,

    Thanks for sharing the fix. But, having a use-case that reproduces the issue helps us understand the scenario better. Modifying the source-code to make it work with one use-case might cause few other issues or it might break in other use-cases. Hence I request you to share a reproducible sample or JSFiddle so that we can find the root-cause & fix it, if it’s a bug.


    Vishwas R
    Team CanvasJS

    in reply to: how to get database value by button into chart. #37795

    @mwy_liao,

    The response that you are passing to view seems to be string & not JSON. Passing JSON seems to be working fine. Please download updated sample from here.

    Stacked Column 100% Chart in ASP.NET


    Vishwas R
    Team CanvasJS

    in reply to: Tooltip not showing #37762

    Ragu Nathan,

    Tooltip can be hidden for particular dataseries by setting toolTipContent to null. In case of shared tooltip, setting toolTipContent to null will hide information related to that particular dataseries from the tooltip.


    Vishwas R
    Team CanvasJS

    @scroteau,

    Thanks for your valuable feedback. We will reconsider this behavior in future.


    Vishwas R
    Team CanvasJS

    in reply to: zoom into open-ended regions not working #37711

    @scroteau,

    Can you kindly create sample project reproducing the issue you are facing and share it with us over Google-Drive or Onedrive so that we can run it locally at our end, understand the scenario better and help you out?


    Vishwas R
    Team CanvasJS

    in reply to: Tooltip not showing #37710

    Ragu Nathan,

    Sorry, it’s not possible to show tooltip for nearest datapoint when you hover a datapoint – even when tooltip is hidden for particular dataseries.


    Vishwas R
    Team CanvasJS

    in reply to: Tooltip not showing #37679

    Ragu Nathan,

    You can set toolTipContent to null in dataseries level to hide tooltip for particular dataseries when shared is set to false. Please take a look at this JSFiddle for an example.

    However, the same can be done using contentFormatter as well. In this case, you will have to loop through all the entries & generate tooltip content to hide information related to one of the dataseries. Please find the code-snippet below.

    contentFormatter: (e) => {
      var content = "";
      for(var i = 0; i < e.entries.length; i++) {
        if (e.entries[i].dataSeries.name != "Visits") {
          content += e.entries[i].dataSeries.name + " - " +  e.entries[0].dataPoint.y;
        }
      }
      return content === "" ? null : content;  
    }

    Please take a look at this updated JSFiddle for complete code.

    Formatting Tooltip Content


    Vishwas R
    Team CanvasJS

Viewing 15 posts - 151 through 165 (of 1,628 total)