Forum Replies Created by Ashish

Viewing 8 posts - 1 through 8 (of 8 total)
  • in reply to: Can I using canvasJS with angular2? #13299

    Hi Theerawat,

    Take a look at CanvasJS charts with AngularJS-2.

    • This reply was modified 7 years, 5 months ago by Ashish.
    in reply to: Fixed xAxis placement #13036

    Hi Aggaton,

    Please provide a jsfiddle or pictorial representation of your requirement so that we can understand your problem better and help you accordingly.

    in reply to: How do you hide labels? #13034

    Hi Cristi,

    1) This is mostly about both index labels and axis labels. Is there a switch anywhere?

    By default the indexLabel is not shown, In case you would like to show the indexLabel, you can use indexLabel property to show some content (Eg: x-value or y-value)
    To hide the axis labels you can use properties like labelFontSize or labelformatter. I would recommend you to use labelFormatter for your requirement.

    2) Same question for all pie labels, what if we don’t want any of them?

    In Pie chart, only if you provide label property in the dataPoint, the indexLabels will be shown. By default the indexLabels are not shown.

    3) As a more broader issue, is there a simple switch somewhere to hide both axes, with all their labels and grid lines?

    You can use the properties like gridThickness(to hide the grid lines), tickLength(to hide the axis ticks), lineThickness(to hide the axis line) and labelFormatter(to hide the labels) for both X and Y axis
    in order to hide the axes completely. Please take a look at the code snippet below,

     axisX:{
        gridThickness: 0,
        tickLength: 0,
        lineThickness: 0,
        labelFormatter: function(){
          return " ";
        }
      },
      axisY:{
        gridThickness: 0,
        tickLength: 0,
        lineThickness: 0,
        labelFormatter: function(){
          return " ";
        }
      }, 

    Please take a look at this JSFiddle for an example with complete code on charts with hidden axes.

    hide gridlines ticks axis lines and lables for both axes

    in reply to: Pie Chart with long tool tip description #12592

    @rhcormier

    You can add HTML tags to toolTip.content. Please refer to this jsfiddle where we have added div to toolTip.content with specific width and CSS customizations.


    Ashish Khatri
    Team CanvasJS

    in reply to: How to add buttons or labels on Chart? #11981

    Hi,

    We have copied and modified your fiddle. Here is the updated fiddle. In the updated fiddle, after pressing the calculate button, you get the famname array for the values of Y-axis and vrijed array for the value of x-axis. Using vrijed and famname arrays, you can store and pass these values to the dataPoints property of the CanvasJS object, in the format required by CanvasJS.

    in reply to: Sample Project #11960

    Hi,

    You can download the ASP.net sample project from this link.

    in reply to: Zoom and export #11959

    Hi Adish,

    We just tried to export the image for the zoomed area and it seems to be working fine. Here is the jsfiddle. In case this does not solve your problem please create a jsfiddle with the issue so that we can understand and help you out.

    in reply to: How to add buttons or labels on Chart? #11903

    Hi,

    If i understood your requirement properly, you can use the labelFormatter for axisY as shown in the given fiddle.
    Axis label formatter
    In case this is not what you are looking for, could you please try to elaborate a little more and create a jsfiddle so that we can get better understanding of your requirement.

Viewing 8 posts - 1 through 8 (of 8 total)