score:0
The problem is in the html:
Remove the options="{showTooltips: false}"
to chart-options="options"
<canvas id="line" class="chart chart-line" data="datax2" labels="labelsx2" legend="true" series="seriesx2" chart-options="options"></canvas>
score:5
you can apply below option to remove grid lines.This works for me.
$scope.options = {
scales: {
xAxes: [{
gridLines: {
display: false
}
}],
yAxes: [{
gridLines: {
display: false
}
}]
}
};
Thanks.
Source: stackoverflow.com
Related Query
- Remove gridlines in AngularCharts
- How to remove gridlines and grid labels in Chartjs Radar?
- How to remove the unnecessary overlaying gridlines using Chart.js?
- ChartJs(Java) Can I remove only specific gridLines for a Linear Chart withouth removing the labels on xAxis?
- How to remove all gridlines and ticks all lines in lines chart in javascript taken from cdn)
- How to run Chart.js samples using source code
- How do I remove CSS code arriving in my webpage?
- ChartJS Line Charts - remove color underneath lines
- Remove x-axis label/text in chart.js
- Remove the vertical line in the chart js line chart
- How to remove square label from tooltip and make its information in one line?
- Chart.js Bar Chart: How to remove space between the bars in v2.3?
- ChartJS – is there any way to remove blank space around pie charts?
- chart.js remove on hover effect
- In Chart.js I want to show dotted gridLines like in below image
- How to remove the line/rule of an axis in Chart.js?
- Remove "label" in chart.js
- how to change background in chartjs and remove background lines?
- Hide gridlines in chartjs without the drawTicks
- How can I remove extra whitespace from the bottom of a line chart in chart.js?
- Remove the label and show only value in tooltips of a bar chart
- Remove left and right padding in Chart.js
- How to remove rectangle box next to the legend text in Chart.js
- How to remove the Chart.js x Axis bottom line?
- chartjs: How to remove specific label
- Chart.js Radar Chart How to Remove Outer Labels
- ChartJS disable gridlines outside chart area
- ChartJS - remove axis?
- impossible to remove scale from radar chart (chart.js)
- How to remove grid on chart.js
More Query from same tag
- set color from datasource like you would set argumentField or valueField?
- Custom labeling/fixed range on x-axis in Chart.js for horizontal bar chart?
- Dynamically update values of a chartjs2.0 chart
- Canvas not working in jQuery Mobile
- Charts.js v2: always show custom (html) tooltips on chart
- chart js draw line chart by points instead of by lines
- How to update data from ajax call (chart.js)
- display vertical axis label in line chart using chart.js
- how to display bars in chartjs
- How to trigger tooltip on legend hover?
- Chart js disable popup
- Chart.js load new data from saved JSON object
- Make chartjs re-render once
- How to convert Json to Array In javascript for chart.js
- JavaScript - Convert dates and times (Chart.js and Moment.js)
- How to set the number of of rows in a line chart in chart.js?
- In chart.js, how to know if a yAxes tick is bumping/rendering over/into another
- Chart.js calculates the width of my time x-axis wrong
- Vue Chart.js -- can I give a line chart a default value for missing data?
- Can't Draw Horizontal Line on Graph Using ChartJS Annotation Plugin and Primevue Chart
- Adding X axis title causes Uncaught RangeError: minimumFractionDigits value is out of range in Chart.js
- ChartJS 'Hello World' not animating
- Chart.js Line, different fill color for negative point
- I want to hide the label in a tooltip because it shows undefined
- How to hide the labels of graphs that are not toggled in ChartJS
- ng2-charts doughnut chart with different data per series
- Canvas won't appear in html
- Chart.js bar chart : Grid color and hide label
- Chart.js: call method outside of onRefresh() method
- How can I change the legend label without affecting my tooltip label?