Forum Replies Created by Manoj Mohan

Viewing 15 posts - 166 through 180 (of 796 total)
  • in reply to: zoom icon hiding issue #38373

    @elanchezhiyan

    Can you kindly create sample project reproducing the issue you are facing and share it with us over Google-Drive or One Drive so that we can understand your scenario better and help you out?

    —-
    Manoj Mohan
    Team CanvasJS

    @benna,

    – In order to see again ALL the chart data i need to click TWICE the “ALL” button in range selector, and this happen also in your JDIfiddle example above. Try selecting, the first time the page is loadedm range 3 months and then the ALL button. You’ll see that the first time will change just the navigation bar, and with a second click also the chart data will change accordingly.

    To show all the chart data, you can set the slider’s minimum and maximum to null in rangeChanged event handler. Please take a look at this JSFiddle for an example on the same.

    —-
    Manoj Mohan
    Team CanvasJS

    @benna,

    – before the modification you suggested, when the chart was rendered the first time i set the rangeSelector property “selectedRangeButtonIndex: 2” so the button with index 2 was selected. But now, setting this button using that property, the event “rangeChanged” is not triggered. Should i force this event via code so when the chart is loaded with button index 2 selected the navigation bar is set accordingly or there’s another way to do this?

    rangeChanged event is triggered only when the range of the StockChart is changed manually using mouse/pointer (zooming/panning/sliding) and it doesn’t trigger when range of StockChart are set programmatically. However, you can manually call rangeChanged event handler after rendering the chart with required parameter as shown in this code snippet.

    rangeChanged({minimum: stockChart.navigator.slider.minimum, maximum: stockChart.navigator.slider.maximum, source: "buttons" })

    – when selecting a different button, inside the rangeChanged(e) function i set these 2 properties:

    // my intention was to set the new button as the selected one
    stockChart.rangeSelector.selectedRangeButtonIndex = e.index;

    // and change the color of the new button
    stockChart.rangeSelector.buttonStyle.set(“backgroundColorOnSelect”, “#ff9800”);

    In order to set selectedRangeButtonIndex, either you can use set method or update the stockchart options. Please take a below code snippet for the same.
    stockChart.rangeSelector.set("selectedRangeButtonIndex", e.index); or
    stockChart.options.rangeSelector.selectedRangeButtonIndex = e.index;

    – In order to see again ALL the chart data i need to click TWICE the “ALL” button in range selector, and this happen also in your JDIfiddle example above. Try selecting, the first time the page is loadedm range 3 months and then the ALL button. You’ll see that the first time will change just the navigation bar, and with a second click also the chart data will change accordingly.

    We are looking into your query and will get back to you at the earliest.

    —-
    Manoj Mohan
    Team CanvasJS

    @benna,

    You can update the dataPoints of navigator to show only dataPoints which are in selected range on click of range buttons using rangeChanged event. Please take a look at below code snippet for updating the datapoint based on the selected range in rangeChanged event.

    
    function rangeChanged(e) {
        var minimum = parseInt(e.minimum);
        var maximum = parseInt(e.maximum);
    
        if (e.source == "buttons") {
            stockChart.options.charts[0].data[0].dataPoints = dps1 = [];
            stockChart.options.navigator.data[0].dataPoints = dps2 = [];
    
            for (var date in completeDPS) {
                if (
                    ((date >= minimum && date <= maximum) || e.index == 5) &&
                    completeDPS.hasOwnProperty(date)
                ) {
                    dps1.push(completeDPS[date]);
                    dps2.push({
                        x: completeDPS[date].x,
                        y: completeDPS[date].y[3],
                    });
                }
            }
            stockChart.render();
        }
    }
    

    Please take a look at this JSFIddle for an example on the same.

    Also, Ranges of range buttons are dependent on the datapoints present in navigator. Hence, updating the datapoints of navigator may result in disabling some of the range buttons whose ranges are outside the range of datapoints present in navigator.

    Update navigator datapoints on selecting range using Range Buttons


    Manoj Mohan
    Team CanvasJS

    @friday096,

    You can use useRef hook for getting the chart object reference as shown in the code snippet below.

    <CanvasJSChart
            options={options}
            onRef={(ref) => {
              chartRef.current = ref;
            }}
    />

    Also, check out this StackBlitz project for an example on the same.

    If you are still facing the issue, kindly create a sample project reproducing the issue and share it with us over Google-Drive or Onedrive so that we can understand your scenario better and help you out.

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: Licence #38072

    @ib,

    Chart seems to be working fine in ASP.NET MVC application. Please take a look at this tutorial page for integrating CanvasJS Charts with ASP.NET MVC application.

    If you are still facing the issue, kindly create a sample project reproducing the issue and share it with us over Google-Drive or Onedrive so that we can understand your scenario better and help you out.

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: unable to implement dougnut chart in react app #38040

    @johndate,

    The issue might be due to breaking changes in webpack. You need to import CanvasJSReact to your app using import CanvasJSReact from './canvasjs.react.js' or var CanvasJSReact = require('./canvasjs.react.js').default;. Please take a look at this StackBlitz project for an example on doughnut chart in react.

    Doughnut Chart in React

    —-
    Manoj Mohan
    Team CanvasJS

    @friday096,

    CanvasJS commercial version doesn’t carry any watermark or credit link. You can purchase commercial version from the license page.

    For further queries regarding commercial version, you can write to us at sales@canvasjs.com.

    —-
    Manoj Mohan
    Team CanvasJS

    @friday096,

    You can create similar graph that you are referring in the link shared above by creating a dynamic chart and by setting labelAutoFit to false as well as setting y-axis maximum. Please take a look at this StackBlitz project for an example on the same in React.

    Dynamic Live Chart in React

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: Stock Chart navigator first label overlapping. #37940

    @ram-chella,

    To avoid clipping of axis labels in navigator, you can set labelAngle to -1 in the navigator x-axis. Please find the below code-snippet for the same.
    navigator: {
    axisX: {
    labelAngle: -1
    }
    }

    —-
    Manoj Mohan
    Team CanvasJS

    @friday096,

    Sorry, it’s not possible to animate the chart every 5 seconds as the chart animates only on the first render, as of now.

    —-
    Manoj Mohan
    Team CanvasJS

    @zaraimtiaz28,

    Can you kindly create sample project reproducing the issue you are facing and share it us over Google-Drive or One Drive so that we can understand your scenario better and help you out?

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: rangeChanged not firing rangeChanging event type #37761

    @scroteau,

    rangeChanging event is fired when the range of the chart is about to be changed i.e. just before rendering of the chart with updated viewport values. While rangeChanged event is fired after the chart is rendered with updated viewport values. With help of dynamicUpdate in StockChart, you can control when to fire rangeChanged and rangeChanging events. If dynamicUpdate is set to true, then range of chart will be updated at every movement of handle and hence rangeChanging and rangeChanged will be fired on updated viewport values. When dynamicUpdate is set to false, the range of the chart will be not updated at every movement of handle but rather will be updated when you release the handle. So rangeChanged and rangeChanging will be fired only on release of handle.

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: Access Denied while accessing URL https://canvasjs.com #37733

    @abdulzafer,

    Sorry for the inconvenience caused. One of our team representative will get back to you over email.

    —-
    Manoj Mohan
    Team CanvasJS

    in reply to: dynamic charts no longer working since 1.6.2 #37653

    @scroteau,

    You can update the dataPoints using set method like stockChart.charts[0].data[0].set("dataPoints", subsetDataPoints)or update the stockchart options like stockChart.options.charts[0].data[0].dataPoints = subsetDataPoints. Please take a look at this updated JSFiddle for sample code.

    Dynamically updating datapoints of Stockchart on rangeChanged

    —-
    Manoj Mohan
    Team CanvasJS

Viewing 15 posts - 166 through 180 (of 796 total)