Forum Replies Created by Vishwas R

Viewing 15 posts - 91 through 105 (of 1,601 total)
  • in reply to: Export resolution – 1200 x 1800 #39296

    @elanchezhiyan,

    The solution shared by @thangaraj-raman demonstrates exporting chart with width set to 1800px & height to 1200px. You can customize the width & height of the chart as per your requirements like 1200×1800 or 1920×1080, etc. by changing the value passed in set method as shown below.

    chart.set("width", 1200, false);
    chart.set("height", 1800);
    chart.exportChart({ format: "jpg" });

    Please refer to documentation page for more customization options available along with examples that you can try out live.


    Vishwas R
    Team CanvasJS

    @nguyentanson1996gmail-com,

    We have just released CanvasJS Charts v3.7 with a few bug fixes related to tooltip & it’s content. Please refer to the release blog for more information. Do download the latest version from our download page and let us know your feedback.


    Vishwas R
    Team CanvaJS

    in reply to: Showing Time in Mouseover data points #39247

    @slarmon,

    You can use xValueFormatString to format the x-value shown in tooltip & indexlabels. In your case, setting xValueFormatString: "HH:mm" should show just time in tooltip. Please refer to this documentation page for more information & live-example.


    Vishwas R
    Team CanvasJS

    in reply to: indexLabelTextAlign for line chart #39246

    Andy,

    The text shown in the indexlabel is getting aligned either to the left, right or center & the indexLabelTextAlign property seems to be working fine as shared in the screenshot. If you are trying to place indexlabel to the left of the marker, that’s not possible as of now. Indexlabels are placed to the center of the marker but the text within the indexlabel can be aligned to the left / right / center whenever the text is wrapped into multiple lines.


    Vishwas R
    Team CanvasJS

    in reply to: weekends showing to charts #39245

    @thefireescaper,

    The JSFiddle shared seems to be working fine without any error. Based on the error that you are getting, you might be passing it as ‘custombreaks’ instead of ‘customBreaks’. All the chart properties are case-sensitive. Hence passing it as customBreaks should work fine. Please refer documentation page for more information & live-examples.

    If you are still facing issue, kindly create JSFiddle reproducing the issue you are facing & share it with us. From what we have observed, sometimes things get delayed mostly when we are not able to reproduce the issue at our end or not able to understand the exact requirements or due to the variation in chart-options being used by you and us. Because of these reasons we expect you so share JSFiddle along with sample data which helps us run it at our end to understand the use case and help you resolve.


    Vishwas R
    Team CanvasJS

    in reply to: indexLabelTextAlign for line chart #39225

    Andy,

    Setting indexLabelTextAlign property seems to be working fine across all the chart types including line, column, pie, etc.
    Center Align Indexlabel

    Can you kindly create JSFiddle with your use-case so that we can understand the scenario better and help you out?


    Vishwas R
    Team CanvasJS

    in reply to: Draw a line over canvas chart #39148

    @eshan_23,

    As addressed by @adithya-menon in the original thread, you can either use area or range-area charts to create polygon shapes. Please refer to this JSFiddle for an example on drawing hexagon using area chart.


    Vishwas R
    Team CanvasJS

    in reply to: Custom width for some columns in column chart #39053

    @inferno,

    It’s not possible to have different width for each column as of now.


    Vishwas R
    Team CanvasJS

    in reply to: indexLabel with the name of month not in english #38985

    Andrea,

    You can show month names in Italian by passing month names in culture. Below is the code-snippet showing the same.

    CanvasJS.addCultureInfo("it", {                  
      months: ["gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre"]      
    });
    var chart = new CanvasJS.Chart("chartContainer", {
      culture: "it",
      .
      .
      .
    }

    Please take a look at this JSFiddle for an example.
    Chart Localization - Showing Months in Italian


    Vishwas R
    Team CanvasJS

    in reply to: Gap between datapoints #38980

    @lars_,

    CanvasJS Chart just renders the data that you pass in chart-options. And in case of line charts, it draws a continuous line to connect all the non-null datapoints present in a dataseries. A gap / discontinuity in the line can be observed only when there is a null datapoint with the dataseries. You can set connectNullData to true to make it continuous by connecting line between non-null data.

    If this doesn’t solve in your scenario, kindly reproduce the scenario either in JSFiddle with dummy data & share it with us (or a sample project & share over Google-Drive/Onedrive) so that we can run it locally to debug & understand it better and help you out.


    Vishwas R
    Team CanvasJS

    in reply to: How to disable toolbar with zoom and reset button? #38979

    @reactdeveloper,

    Zoom / Pan & Reset buttons will be shown when you enable zooming in the chart. If you like to enable zooming, show the buttons but disable them, you can set HTML button’s disabled property to true. Please find the code-snippet below.

    var buttons = document.getElementsByClassName("canvasjs-chart-toolbar")[0].children;
    for(var i = 0; i < buttons.length; i++) {
      buttons[i].disabled = true
    }

    However, if you like to enable zooming but hide the buttons, you can set display: none !important; to canvasjs-chart-toolbar class. Please take a look at this JSFiddle for an example.


    Vishwas R
    Team CanvasJS

    in reply to: Rescale Y axis based on visible dataseries #38962

    @an01,

    Y-axis scaling seems to work fine, i.e. Y-axis range (minimum & maximum) gets adjusted as per the y-values present in the viewport.

    Can you kindly create JSFiddle reproducing the issue you are facing & share it with us so that we can look into the chart-options being used, understand the scenario better and help you out?


    Vishwas R
    Team CanvasJS

    in reply to: How to view in php page #38955

    @nilo,

    Please take a look at this gallery page for an example on rendering PHP chart with data from database. You can use multi-series chart in your case. Please take a look at this sample project for an example on rendering multi-series chart with data from database.
    PHP Chart with Data from Database


    Vishwas R
    Team CanvasJS

    in reply to: Multiseries Line Chart Mixture on Draw #38870

    @maestrofc27,

    I would suggest you to generate datapoints in the back-end and keep all other chart-options in the front-end itself. Please take a look at this gallery page for an example on rendering chart with data from database.

    If you are unable to achieve it or if you encounter any issue while achieving the same, kindly create sample project with sample data & share it with us over Google-Drive or Onedrive so that we can run it locally at our end to understand the scenario better and help you out.


    Vishwas R
    Team CanvasJS

    Pavel Hulmak,

    Extra labels +1 & -1 are shown as interval is set manually. Based on the interval & some other factors, axis range is calculated & hence the extra labels are added in this case. You can overcome this by either not setting interval when there are less datapoints or by manually setting axis range. Please take a look at this updated JSFiddle.

    JavaScript Bar Chart with Label


    Vishwas R
    Team CanvasJS

Viewing 15 posts - 91 through 105 (of 1,601 total)