How to disable grid lines in pivot chart
This article explains how to disable grid lines in the Angular pivot chart
Disable grid lines in pivot chart
In certain situations, you may want to remove the grid lines in a pivot chart to achieve a cleaner and less cluttered appearance. This can be done by setting the width of the majorGridLines property to 0 within the load event. Additionally, you can disable tick lines in the pivot chart by setting the width of the majorTickLines property to 0.
Here is a code snippet that guides how you can disable grid lines and tick lines:
[app.component.html]
<div class="control-section">
<div>
<ejs-pivotview #pivotview="" id="PivotView" [chartsettings]="chartSettings" [displayoption]="displayOption">
</ejs-pivotview>
</div>
</div>
[app.component.ts]
public displayOption: DisplayOption;
public chartSettings: ChartSettings;
@ViewChild('pivotview')
public pivotObj: PivotView;
onChartLoad(args: any) {
for (let i = 0; i < args.chart.axes.length; i++) {
//To disable the grid lines
(this.pivotObj.chart as any).axes[i].majorGridLines = { width: 0 };
//To disable the tick lines.
(this.pivotObj.chart as any).axes[i].majorTickLines = { width: 0 };
}
}
ngOnInit(): void {
this.displayOption = { view: 'Chart' } as DisplayOption;
this.chartSettings = {
load: this.observable.subscribe(this.onChartLoad.bind(this)) as any,
} as ChartSettings;
}
The following screenshot, which portrays the results of the code snippet mentioned above,
Screenshot:
For a practical example of this code in action, you can refer to the following Sample in Stackblitz
Conclusion:
I hope you enjoyed learning how to disable grid lines in pivot chart.
You can refer to our Angular Pivot Table feature tour feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Angular Pivot Table example example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!