Forum Replies Created by Vishwas R

Viewing 15 posts - 1,516 through 1,530 (of 1,601 total)
  • in reply to: Change part of the colored area in splineArea chart #11428

    You can use Range Spline Area chart along with minimum to do so, check this example. And also you can change the code in our library (canvasjs.js), you can look into renderRangeSplineArea to modify Spline-Area chart.

    in reply to: Change format date #11424

    Kindly use any of the following 4 date-formats.
    1. ISO Dates (YYYY-MM-DD or YYYY-MM or YYYY-MM-DDTHH:MM:SS)
    2. Long Dates (MMM DD YYYY)
    3. Short Dates (MM/DD/YYYY or YYYY/MM/DD)
    4. Full Format (full JavaScript format Ex: new Date(“Wed Mar 25 2015 09:56:24 GMT+0100 (W. Europe Standard Time)”);

    Please refer this page for Date-Formats in JavaScript.

    in reply to: Change part of the colored area in splineArea chart #11420

    Sorry this feature is not available, as of now.

    in reply to: Edges #11419

    Thanks for the jsfiddle. The behavior has been designed the way so that the marker won’t go out of plot-area and overlap other elements like labels, title etc.

    We observed that you are setting minimum and maximum to exact value of minimum/maximum of dataPoint values, which clips the markers. You can overcome this by setting minimum and maximum of axisY in accordance with the dataPoint values. Check this jsfiddle.

    in reply to: Change format date #11417

    Both formats works fine across browsers like Firefox, all chromium based except Internet Explorer as new Date(“Sun 02 03 2013 22:04:09”) is not a standard JavaScript DateTime format. Its suggested to use standard JavaScript DateTime formats to make it work properly across all browsers.

    in reply to: Collection data with Ajax #11413

    Saimeera,

    We observed that you are using dateTime over axis-X. Kindly refer this link for JavaScript date-time object.

    Here is the working JFiddle.

    Rendering Chart from External JSON File (DateTime over X-Axis)

    —-
    Vishwas R
    Team CanvasJS

    in reply to: Candlestick + Volume (line chart) in one chart? #11411

    Budihar,

    As of now its not possible to share common axis across multiple charts. But you can use two separate charts one below the other to achieve this as show in this example.

    in reply to: Candlestick + Volume (line chart) in one chart? #11405

    Budihar,

    Yes it’s possible to combine candlestick chart with any other chart types except Doughnut, Pie, all Bar charts. Here is an example.

    in reply to: Change format date #11404

    We observe that both formats are working fine.

    { x: new Date("Sun 02 03 2013 22:04:09"), y: 26},
    { x: new Date("Sun Feb 03 2013 22:04:09"), y: 26}
    

    Here is the screenshot of the same.
    Can you please create a jsfiddle with the issue, so that we can look into it and resolve.

    in reply to: Distance between two columns in the column chart #11384

    Teresa,

    You can use dataPointWidth to increase/decrease the width of dataPoint (column in your case) which is nothing but reducing/increasing the gap between columns.

    in reply to: is there a way to have two charts share 1 y-axis? #11360

    Sorry, as of now Bar chart Cannot be combined with any other chart types except Bar and Stacked Bar charts.

    in reply to: Scaling Canvas for PDF printing #11359

    Sorry we don’t have this feature as of now. We had considered it, but found intervals were not proper. For example, if minimum is 0, maximum is 80 and user likes to have 7 ticks in that range, interval comes out to be 11.42857142857143 (~11.43), which is not convenient to the user. But we’ll reconsider this feature in future releases.

    As of now, you can manually calculate interval to achieve the same. For Example, if the minimum is 0, maximum is 90 and if you like to show 8 number of ticks, you can set interval to 11.25.

    in reply to: Multiple Graphs on Tabs #11351

    @mahi2000,

    Please refer to this JSFiddle for an example on rendering multiple dynamic charts in bootstrap tabs using bootstrap shown.bs.tab tab events.

    Dynamic Charts within Bootstrap Tabs

    Also, we checked the charts with multiple mobile devices and it seems to be working fine. Can you kindly create a JSFiddle reproducing the issue, so that we can look into the issue and help you out. Along with it, please provide the following information: Mobile Device, OS and its version, Browser and version.

    —-
    Vishwas R

    in reply to: Edges #11350

    Can you kindly create a jsfiddle, so that we can look into the issue and help you out?

    in reply to: Almost working with expanding panel in Bootstrap 3 #11339

    HeavyThumper,

    You have to initialize the chart on shown.bs.collapse event in bootstrap. Here is an example.

Viewing 15 posts - 1,516 through 1,530 (of 1,601 total)