11,370 questions
0
votes
0
answers
23
views
How to lower the entry to align it with the other labels? [duplicate]
How could I make the labels of a form align with their respective inputs? I would like the label and the input to be on the same line
I'm using medias query this view is for mobile
enter image ...
0
votes
1
answer
147
views
Highcharts gantt Y axis label left align not padded
We use the Gantt chart with a Y axis containing a treegrid.
We want to left align the labels in the treegrid but the labels are sticked to the border of the cells. We would like to let a left padding ...
1
vote
0
answers
59
views
How to fix the label displacement in a bar plot? [duplicate]
this is my code:
`# Create a bar plot using seaborn
plt.figure(figsize=(12, 6))
sns.barplot(x="Month", y="Valor", hue="Year", data=monthly_precipitation, palette="...
1
vote
1
answer
272
views
R : Changing Labels position in a pie chart with ApexCharter
I am using the ApexCharter library for pie charts and I would like to push the displayed labels closer to the center as they seem too "off".
I tried to tweak the offset and textAnchor ...
0
votes
1
answer
68
views
When using Tkinter Notebooks, how can I use a StringVar from one tab for another tab object while allowing for f string usage and live updates
I am creating a little project for helping creating BG3 mods. My end goal is to have multiple tabs where I can enter the data, and it exports the files when I save.
I am able to perform the saving and ...
0
votes
3
answers
65
views
How to justify a label next to the input field?
enter image description here
As in, in this image, the labels are slightly above to the input text fields. I want them to justify.
input {
border: 1px solid black;
border-top: 3px solid grey;
...
2
votes
2
answers
306
views
Add aesthetics to the text label in ggplot
I have below ggplot
library(ggplot2)
set.seed(1234)
ss <- sample(1:32, 15)
df <- mtcars[ss, ]
ggplot(df, aes(wt, mpg)) +
geom_point(color = 'red') +
geom_label(aes(x = 2, y = 15), label = '...
0
votes
1
answer
56
views
Problem with geoserver 2.21-SNAPSHOTimporting sld file of qgis
I can apply this style on geoserver 2.21.2, there is no problem verifying this style on geoserver 2.21-SNAPSHOT, but the preview layer reports:
The style specifies an attribute named 'xm',not found ...
0
votes
1
answer
1k
views
I want to place multiple(3) labels for line.new in pinescript without them overlapping when zoomed out
Not sure if this is possible, but sure would be nice. I have a currently published script that I'm improving to a better version. The script locates user-defined moving averages of multiple kinds, of ...
0
votes
0
answers
49
views
JavaFX how to change a letter color of a label?
I am trying to make a TypingGame. As you know, the target word letter colors have to change as soon as you type the correct words. Here you can see an example and also my code. I can not seem to make ...
0
votes
1
answer
71
views
GEE - ui.Label Error, can´t print ee.String text
My code
//Geometrys
var geometry = *Generic Poligon
var g1 = *Generic Poligon
//Geometrys Area
var garea = ee.Number.parse(ee.Number.parse(
geometry.area({'maxError': 1})
.divide(...
1
vote
1
answer
47
views
Fix label overlapping and space inside ggplot
I have two df as below.
df1 <- structure(list(Sequence = c(
"ABC>EFGHI", "ABC>NOPQ", "ABC>JKLM",
"ABC>RSTUV", "ABC>EFGHI>NOPQ"...
2
votes
1
answer
1k
views
How change labels name in risk table using ggsurvfit package?
Is it possible to edit the risk table labels?
I'm trying to change the risk table labels ('male', 'female') to something else.
library(tidyverse)
library(ggsurvfit)
p <-
survfit2(Surv(time, ...
0
votes
1
answer
614
views
SwiftUI: The Picker label text is not appearing and I can't seem to modify it
When I create a menu style picker I am only seeing the picker options displayed and not my label text.
This is using the updated code: Picker(selection:, content:, label), but I get the same result ...
0
votes
1
answer
100
views
delete tkinter labels after you click a button
I am making a story-based game on Tkinter and I what I want is that once the play clicks the next button, or makes a decision I want that block of text to disappear so the player can focus on the next ...
0
votes
1
answer
42
views
Old question not clearing from label for new question
This is my code -the old question can still be seen "under" new question. I have tried various ways to "clean" the label to make way for the new question (short of deleting the ...
0
votes
1
answer
133
views
Can't get <label> and <input> on the same line
I can't seem to get <label> and <input> on the same line under "Schedule preferences". CodePen here.
I've tried floating and table cell attribute manipulation. Any help would be ...
0
votes
1
answer
233
views
The text property value does not change at runtime when using a style (MAUI)
I have utilized a style for the label and bound its text property to a property in the ViewModel. Initially, I set the label's text value using the property in the ViewModel. Later, I changed its text ...
2
votes
1
answer
74
views
Adjusting x-axis labels in ggplot bar graph
I want to move the labels of the bars which are below mean line on the upper side.
I am using this code to make this graph
horiz <- mean(data$SPAD)
quux <- data %>%
select(Genotype,Species,...
0
votes
1
answer
136
views
Is there a way to put a user input text in the top right corner of a chart?
I'm trying to put some text in the top right or top left of a chart depending on a user selection. I have the following code but this puts the text right above the current price (which is a little too ...
1
vote
0
answers
82
views
Overlapping data labels on line plot (matplotlib)
On this plot I'd like to show relative changes in consumption of 3 different products per quarter. But I have an issue with overlapping data labels, which makes it difficult to "understand" ...
0
votes
1
answer
127
views
How do I left align data in pandas dataframe in tkinter label?
I am trying to display a pandas dataframe in a tkinter label in a popup window so that the user can easily see the data.
Here is the code:
from tkinter import Toplevel, Button, Tk
import tkinter as tk
...
0
votes
2
answers
74
views
sjPlot plot_xtab stack_view
How can I avoid the %0 print for the following scenario ?
library(sjPlot)
library(palmerpenguins)
View(penguins)
plot_xtab(penguins$island, penguins$species, bar.pos = "stack",
margin = &...
2
votes
2
answers
5k
views
Why can I declare a variable after a label in GCC, but not Clang?
I found some code that compiles under gcc but not under clang:
#include<stdio.h>
int main(int argc, char **argv) {
int test = 0;
if (test == 0) {
goto print_five;
} else {
...
0
votes
1
answer
91
views
Input from user display on 2nd page
I am trying to get input from the user and display it on the second page. It should say Hello and then the input from the entry box on the first page. I have commented out the code that isn't working. ...
0
votes
0
answers
56
views
Compatibility of ggpattern and expression() in x-axis
I want to create a plot representing different categorical variables (x-axis) for three different times and two response variables. However, this categorical values need to have subscripts. For that, ...
0
votes
1
answer
102
views
Label "labelname" is not defined
Currently trying to make a program that bubble sorts several numbers either in ascending or descending order, where type of order is decided by the CV in 00h. So, i just can't pinpoint what's the ...
1
vote
1
answer
74
views
How can I remove space between label?
I want to remove the space between labels.
Range number of labels is 1 to 5 and is used in loop ( text got from db )
I Used varios option but everythoing failed
(.setAlignment/.setMargin~~~~)
And I ...
1
vote
1
answer
570
views
GitLab CI skip job in MR pipeline if label is present
This job runs anyway in a MR, is this a bug?
I tried different combinations as seen from the GitLab docs, but it continues to run or fails due to wrong syntax
somejob:
stage: somestage
rules:
-...
0
votes
1
answer
59
views
The Labels in my code written in KIVY do not update
I have tried all possible code variations and even gone through the documentation of Kivy but I just cannot manage to get my labels to update from inside a loop. The code is att below. Please can ...
0
votes
0
answers
31
views
Adding data values to a stacked bar chart?
i am doing a data science module at Uni, and am relatively new at R. I am having trouble with adding data values to my stacked chart, and have no clue on how to fix it.
My current code is this:
bp <...
0
votes
1
answer
43
views
R geom_line - Add labels to grouped data
I have a graph with a bar plot and a line chart together.
I have no problems to show the labels over the bars but I would like to show them also on top the line chart. The line is showing the sum of ...
0
votes
1
answer
55
views
Individual value labels for side-by-side count barplots in ggplot2
I am trying to create a side-by-side barplot of count values with value labels in ggplot 2, but I cannot seem to figure out how to add value labels to the individual side-by-side bars.
I am using the ...
0
votes
0
answers
30
views
sleep() doesn't work in synch with button slots [duplicate]
I am trying to create a function that would display a message for only a few seconds after a button press, before displaying nothing once more.
Changing another label text works just fine, but the ...
0
votes
1
answer
84
views
Maintain the font of the whole plot (x and y axis), but keeping the labels on top of the graph smaller so they dont overlap
Basically I am using different columns to plot my data using seaborn.
I use sns.set_context("talk") so the font is big enough to be read properly. However, since the specifications of the ...
0
votes
1
answer
60
views
Can we click multiple times on a specific label we have created and change the label text each time we click (in user form of excel VBA)?
I have a user form in excel written in VBA. There is a label in my user form and I want to change this label's caption each time I click on it. For example: This label currently have "1" ...
0
votes
0
answers
66
views
Writing to Labels sequentially in VB.Net
Apologies, this is probably a very simple problem, due to me stumbling through basic without any tuition....
I am trying to display cells from an excel file in labels attached to a table.
I can ...
0
votes
1
answer
615
views
How can I add metric labels to Prometheus alert manager description?
I want to access lables of the metric which matches the expression to inform the team about which exact queue exceeds the limit:
An example of the metric
job_duration_bucket{resource_server="rs1&...
0
votes
1
answer
77
views
How to fix xlabels with multiple categories in R ggplot?
I am trying to generate a Bar plot with multiple categories using ggplot. I am having a hard time fixing the labels. I was trying to use the solution I found here: ggplot2 multiple sub groups of a bar ...
1
vote
0
answers
21
views
NASM - Create labels in a %rep section
Bonjour
Here is what I expect :
irq_wrapper_0: ; The code of each irq_wrapper is similar and not shown
irq_wrapper_1:
irq_wrapper_2:
irq_wrapper_3:
...
irq_wrapper_array:
dd ...
1
vote
0
answers
2k
views
How to justify the text of label in .NET MAUI?
I have a label that displays on more than a line and I would like to justify the text in it (align left and right).
I've been trying to achieve this through the handler, but I have no clue how to do ...
0
votes
0
answers
80
views
The value labels in seaborn countplot / factorplot are displayed as values in other graphs [duplicate]
fig, ax = plt.subplots(figsize=(4,3))
sns.countplot(data=train_dt, x='Pclass', ax=ax)
abs_values = train_dt['Pclass'].value_counts()
rel_values = train_dt['Pclass'].value_counts(normalize=True)....
-1
votes
1
answer
3k
views
How to make 5-star rating with CSS
I've edited a version of CSS 5-star rating, and need multiple of these ratings on my one page. However, when I changed the id on the different sets of 5 stars, and now it won't process checking the ...
0
votes
0
answers
47
views
Highcharts Funnel/Pyramid labels issue
I have a display issue when activating legend on a funnel/pyramid Hicharts.
In fact, when I unselect an item in the legend, the slice is correctly hide on the chart but the data labels are moved with ...
0
votes
0
answers
87
views
How to make a label in tkinter, at an angle?
I'm writing a tic-tac-toe game. When winning, I use the label as a line, but please tell me how to make the label at an angle?
In this case I need a diagonal line
I was looking for a solution to ...
-2
votes
2
answers
207
views
How to make a <label> text enable or disable an <input> range?
I would like the range to toggle itself (minimum / maximum) when I click on the label.
Is that possible with only HTML or CSS ? Do I need some JS?
I have the following code :
<label>
...
1
vote
0
answers
87
views
VB.NET Dynamically created Label does not have Label properties
The following code snippet is giving compilation error in a VB.Net module:
Dim ph1 As Placeholder = Page.FindControl("The PlaceHolder")
Dim lbl As New Label
lbl.ID = "theID"
lbl....
1
vote
1
answer
646
views
ggsankey: Labels and nodes do not have same position in the output
Aiming for a sankey without NA-nodes, I adapted my code according to the recommendations in this post:
text
In my output, the number and the position of the labels do not match the corresponding nodes....
-1
votes
1
answer
2k
views
I want to use categories in Outlook the same way I use labels in Gmail. What's the best practice? [closed]
I have been using Gmail labels for several years, and they are far superior to folders. You can add as many labels as you want, and when you archive an email, it is stored under that label. So I can ...
0
votes
1
answer
140
views
Pine script box/label too thick/vibrant. Possibly duplicate stacks?
The boxes and labels generated by this code:
TKO = #e91e63
TKObg = color.new(#e91e63, 90)
LDN = #2157f3
LDNbg = color.new(#2157f3, 90)
NYC = #ff5d00
NYCbg = color.new(#ff5d00, 90)
box.new(...