Forum Replies Created by Thangaraj Raman

Viewing 15 posts - 196 through 210 (of 229 total)
  • in reply to: Charts print in height solution #37012

    @gittek,

    You can scale-up or scale-down the chart before exporting using exportChart method and reset it back soon after exporting. Please take a look at this JSFiddle for a working example.

    Scale chart before exporting

    If the solution suggested doesn’t fulfill your requirement, kindly create a sample project reproducing the issue you are facing and share it with us over Google-Drive or Onedrive so that we can look into the code, understand the scenario better and help you out.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Speedo Meter Chart #37005

    @m-usman,

    You can customize a DIV using CSS to visualize the needle as shown in the code snippet below –

    HTML
    <div class="speedometer__needle js-needle"></div>

    CSS

    .speedometer__needle {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: transparent;
      top: 72%;
      left: 50%;
      transition: .3s ease-in-out;

    To position the needle at a specific point you can use CSS transform property. Please check the code snippet below –

    $( '.js-needle' ).css({
      'transform' : 'translate(-50%, -50%) rotate('+  (tickValue * 18.0) + 'deg)'
    });

    Please check this JSFiddle for a working example which meets your requirement.

    Speedometer Chart


    Thangaraj Raman
    Team CanvasJS

    in reply to: Speedometer chart #37003

    @m-usman,

    You can customize a DIV using CSS to visualize the needle as shown in the code snippet below –

    HTML
    <div class="speedometer__needle js-needle"></div>

    CSS

    .speedometer__needle {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: transparent;
      top: 72%;
      left: 50%;
      transition: .3s ease-in-out;

    To position the needle at a specific point you can use CSS transform property. Please check the code snippet below –

    $( '.js-needle' ).css({
      'transform' : 'translate(-50%, -50%) rotate('+  (tickValue * 18.0) + 'deg)'
    });

    Please check this JSFiddle for a working example which meets your requirement.

    Speedometer Chart


    Thangaraj Raman
    Team CanvasJS

    in reply to: Chart Overlapping Issue #36958

    @keval-panchal,

    The dataPointWidth is auto calculated such that no column is overlapped in case of a single series or multi-series chart. In your case, you are setting the dataPointWidth manually which makes the columns overlap with each other.

    Please take a look at this updated JSFiddle for a working example.

    Multi-Series Column Chart

    Considering this thread as a duplicate of Bar Chart Overlapping Issue and hence closing the same.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Bar Chart Overlapping Issue #36957

    @keval-panchal,

    The dataPointWidth is auto calculated such that no column is overlapped in case of a single series or multi-series chart. In your case, you are setting the dataPointWidth manually which makes the columns overlap with each other.

    Please take a look at this updated JSFiddle for a working example.

    Multi-Series Column Chart


    Thangaraj Raman
    Team CanvasJS

    in reply to: Fix date on x-axis #36911

    @ahadali791,

    You can convert the x-values to labels and combine dataPoints with the same date using similar x-values. Please find the code snippet for the same below.

    function setXValue(data) {
      var xValue = 0;
      for(var i = 0; i < data.length; i++) {
        if(data[i+1] && data[i].x.getTime() === data[i+1].x.getTime()) {
          data[i].label = data[i].x;
          data[i].x = xValue;
        }
        else {
          data[i].label = data[i].x;
          data[i].x = xValue;
          xValue++
        }
      }
      return data
    }

    Please take a look at this JSFiddle for a working example.

    Range Column Chart


    Thangaraj Raman
    Team CanvasJS

    in reply to: Creating waterfall chart by selecting point in linechart #36889

    @kerrith,

    You can create a drilldown chart to achieve your requirement. Please take a look at this gallery page for an example on the same.

    Drilldown Chart


    Thangaraj Raman
    Team CanvasJS

    in reply to: Fix date on x-axis #36876

    @ahadali791,

    Can you kindly brief us further about your requirement along with a pictorial representation and also create a sample project reproducing the issue you are facing and share it with us over Google-Drive or Onedrive along with sample data so that we can look into your code, run it locally at our end to understand the scenario better, and help you out?


    Thangaraj Raman
    Team CanvasJS

    in reply to: Choose which line we need in front #36802

    @ragu1991nathan,

    Chart renders dataseries in the same sequence in which they are passed to the chart-options. Passing the dataseries with red color before the dataseries with blue color should work fine in your case. Please take a look at this updated JSFiddle for a working example.

    chart with dataseries in sequence


    Thangaraj Raman
    Team CanvasJS

    in reply to: Scale ratio in canvasjs for both axes #36624

    @mustadirmahmood,

    To achieve your requirement, you can loop through the dataPoints and convert each y-value from millimeter to pixel as the chart is rendered based on pixels. Please take a look at this updated JSFiddle for a working example on the same.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Scale ratio in canvasjs for both axes #36618

    @mustadirmahmood,

    The dataPoints in a chart are plotted based on pixel coordinates. You can convert millimeter to pixel value by multiplying it by 3.7795. Please find the code snippet below.

    function convertMillimeterToPixel(mm) {
    	return (mm * 3.7795);
    }

    Please take a look at this JSFiddle for an example on setting chart width & height in millimeters. You can use legendText to display the scale-ratio.


    Thangaraj Raman
    Team CanvasJS

    in reply to: CSP support #36568

    @shruti-srivastava,

    Thanks for your interest in CanvasJS and we appreciate you for bringing this to our notice.

    As we are busy implementing some other important features at this point of time, we will re-look into this concern in future versions to improve our library further.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Stripline breakpoints #36477

    @mustadirmahmood,

    Strip Lines are used to highlight a certain region in the plot area across the full width/height of the chart and hence cannot have breakpoints. However, in your case, you can use a multi-series line chart with 2 dataPoints each to represent the start and end coordinates of the line.

    Kindly take a look at this JSFiddle for a working example.

    Chart with multiple lines

    If the solution suggested doesn’t fulfill your requirement, kindly brief us further about your use case so that we can understand your scenario better and help you out with an appropriate solution.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Have issue while accessing the graph in Safari #36447

    Aarvin,

    The issue seems to be with the Date Format passed as an argument to new Date(). Passing it in the standard formats supported in JavaScript Date object should work fine in your case.


    Thangaraj Raman
    Team CanvasJS

    in reply to: Align multiple x-axis #36427

    @elcollie.

    As the number of days varies between months, axis labels cannot be aligned across multiple axes in the case of date-time values. However, in your example, you can use the label property instead of x value to align the labels on both axes.

    Kindly take a look at this updated JSFiddle for a working example.

    Align labels on multiple axis


    Thangaraj Raman
    Team CanvasJS

Viewing 15 posts - 196 through 210 (of 229 total)