- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set the background color of a column in a matplotlib table?
To set the background color of a column in a matplotlib table, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Make a tuple for columns attribute.
Make a list of lists, i.e., list of records.
Make a list of lists, i.e., color of each cell.
Create a figure and a set of subplots.
Add a table to an axes, ax.
Turn off the axes.
To display the figure, use show() method.
Example
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True columns = ('name', 'age', 'marks', 'salary') cell_text = [["John", "23", "98", "234"], ["James", "24", "90", "239"]] colors = [["red", "yellow", "blue", "green"], ["blue", "green", "yellow", "red"]] fig, ax = plt.subplots() the_table = ax.table(cellText=cell_text, cellColours=colors, colLabels=columns, loc='center') ax.axis('off') plt.show()
Output
- Related Articles
- How to set the background color of a ttk.Combobox in tkinter?
- How can we set the background/foreground color for individual column of a JTable in Java?
- How to change header background color of a table in Java
- How can I set the background color on specific areas of a Pyplot figure using Matplotlib?
- How to set background color of a View in iOS App?
- How to set background color of a view in Android App
- How to set background color in jQuery?
- How to set background color in HTML?
- How to change axes background color in Matplotlib?
- How can we set the background color to a JPanel in Java?
- How to set the grid color of a table in Java?
- How can we set a background color to JSplitPane in Java?
- How to set a particular color as background to a JavaFX chart?
- Add hover color to background color of the table row in Bootstrap
- How to set the background color of a single tab in a JTabbedPane Container with Java?

Advertisements