border

Remove border from opencv generated ellipse in pygame

Remove border from opencv generated ellipse in pygame Question: I’ve set up this window where I blit an ellipse to the screen. I would like to have the ellipse fully white with a smooth border. It looks acceptable, but when I add the ellipse to a white background, the border of the ellipse shows up. …

Total answers: 2

How to change border color in tkinter widget?

How to change border color in tkinter widget? Question: I want to know how should I chnage border color of tkinter Label or Button , I put the releif in solid and the border color would be black . i have tried highlightthickness,highlightcolor,highlightbackground but it doesnt work here is a sample of my code : …

Total answers: 3

Python – how to remove border around selected ListBox item?

Python – how to remove border around selected ListBox item? Question: This is a minor issue but I’ve been struggling with it most of the afternoon and getting nowhere, so here goes. I’m about to write a Python script that will require the use of the ScrolledListBox(). Never having used it before, I started with …

Total answers: 1

Adding a border to and Image in my code

Adding a border to and Image in my code Question: Help, I need to put a border on the image displayed from the code below. How do I do this? The code below pulls up the image, and now i need a border. Help.. All of this code is Python # -*- coding: utf-8 -*- …

Total answers: 2

Python-PPTX: Changing table style or adding borders to cells

Python-PPTX: Changing table style or adding borders to cells Question: I’ve started putting together some code to take Pandas data and put it into a PowerPoint slide. The template I’m using defaults to Medium Style 2 – Accent 1 which would be fine as changing the font and background are fairly easy, but there doesn’t …

Total answers: 3

matplotlib bar graph black – how do I remove bar borders

matplotlib bar graph black – how do I remove bar borders Question: I’m using pyplot.bar but I’m plotting so many points that the color of the bars is always black. This is because the borders of the bars are black and there are so many of them that they are all squished together so that …

Total answers: 2

How to set border color of certain Tkinter widgets?

How to set border color of certain Tkinter widgets? Question: I’m trying to change the background color of my Tkinter app, but for certain widgets it leaves a white border around the edges. For example, this: from tkinter import * COLOR = “black” root = Tk() root.config(bg=COLOR) button = Button(text=”button”, bg=COLOR) button.pack(padx=5, pady=5) entry = …

Total answers: 2

How to customise the border color of tkinter/ttk widgets and frames?

How to customise the border color of tkinter/ttk widgets and frames? Question: Is there any way to customize the border color of a Tkinter/ttk widgets or frames? Asked By: Malcolm || Source Answers: Yes, you can create your own style and apply it to the widget or configure the attributes of an existing style. Some …

Total answers: 2