Questions tagged «label»

标签是文本和其他UI元素的占位符。

2
更改网格间隔并在Matplotlib中指定刻度标签
我正在尝试在网格图中绘制计数,但是我无法弄清楚如何进行计算。我想要: 虚线网格间隔为5 每20个仅带有主要刻度线标签 我希望刻度线不在情节之外。 在这些网格内有“计数” 我已经检查了潜在的重复项,例如此处和此处,但我无法弄清楚。 这是我的代码。 import matplotlib.pyplot as plt from matplotlib.ticker import MultipleLocator, FormatStrFormatter for key, value in sorted(data.items()): x = value[0][2] y = value[0][3] count = value[0][4] fig = plt.figure() ax = fig.add_subplot(111) ax.annotate(count, xy = (x, y), size = 5) # Overwrites and I only get …


1
matplotlib设置yaxis标签大小
如何仅更改yaxis标签的大小?现在,我使用以下命令更改所有标签的大小 pylab.rc('font', family='serif', size=40) 但就我而言,我想使y轴标签大于x轴。但是,我想单独打勾标签。 我尝试过,例如: pylab.gca().get_ylabel().set_fontsize(60) 但我只得到: AttributeError: 'str' object has no attribute 'set_fontsize' 所以,显然那是行不通的。我见过很多关于刻度大小的东西,但是轴标签本身什么也没有。

6
如何使用LABEL标签的FOR属性,而INPUT标签上没有ID属性
以下代码中说明的问题有解决方案吗?首先,在浏览器中打开代码以直接理解问题,而不必在了解所需内容之前仔细阅读所有代码。 <html> <head> <title>Input ID creates problems</title> <style type="text/css"> #prologue, #summary { margin: 5em; } </style> </head> <body> <h1>Input ID creates a bug</h1> <p id="prologue"> In this example, I make a list of checkboxes representing things which could appear in a book. If you want some in your book, you …
78 html  input  label  for-loop 



7
对PictureBox的透明控制
在我的C#表单中,我有一个在下载事件中显示下载百分比的标签: this.lblprg.Text = overallpercent.ToString("#0") + "%"; Label控件的BackColor属性设置为透明,我希望将其显示在PictureBox上。但这似乎无法正常工作,我看到的是灰色背景,在图片框顶部看起来不透明。我怎样才能解决这个问题?
68 c#  background  label 

5
如果在Firefox中单击鼠标时鼠标被移动,则HTML标签不会触发相应的输入
在以下示例中,当您单击标签时,输入将更改状态。 document.querySelector("label").addEventListener("click", function() { console.log("clicked label"); }); label { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } <input type="checkbox" id="1"> <label for="1">Label</label> 运行代码段隐藏结果展开摘要 在Chrome中,当您在mousedown和mouseup事件之间移动光标时,输入仍会被触发,而在Firefox中,此复选框不会更改状态。 有没有办法来解决这个问题?(不使用JavaScript事件侦听器) Firefox版本: 69.0.3 (64-bit) 使用Chrome浏览器时的全套操作。 按下标签上方的按钮 仍然按住按钮的同时,将光标移动到周围(甚至在标签之外) 将光标返回到标签 释放按钮
13 javascript  html  css  label 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.