Questions tagged «label»

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

1
在ggplot2中添加x和y轴标签
如何更改此图上的x和y标签? library(Sleuth2) library(ggplot2) discharge<-ex1221new$Discharge area<-ex1221new$Area nitrogen<-ex1221new$NO3 p <- ggplot(ex1221new, aes(discharge, area), main="Point") p + geom_point(aes(size= nitrogen)) + scale_area() + opts(title = expression("Weighted Scatterplot of Watershed Area vs. Discharge and Nitrogen Levels (PPM)"), subtitle="n=41")
119 r  label  ggplot2 

6
CSS标签宽度不起作用
我有一个通用表单,我想对它进行样式设置以对齐标签和输入字段。由于某种原因,当我给标签选择器指定宽度时,什么也没发生: HTML: <form id="report-upload-form" method="POST" action="" enctype="multipart/form-data"> <p> <label for="id_title">Title:</label> <input id="id_title" type="text" class="input-text" name="title"></p> <p> <label for="id_description">Description:</label> <textarea id="id_description" rows="10" cols="40" name="description"></textarea></p> <p> <label for="id_report">Upload Report:</label> <input id="id_report" type="file" class="input-file" name="report"> </p> </form> CSS: #report-upload-form { background-color: #316091; color: #ddeff1; font-weight:bold; margin: 23px auto 0 auto; border-radius:10px; width: 650px; …
112 html  css  label 

10
Android中的垂直(旋转)标签
我需要两种在Android中显示垂直标签的方法: 水平标签逆时针旋转90度(侧面字母) 带有一个字母在另一个字母下方的水平标签(例如商店标志) 我是否需要针对两种情况(一种情况)开发自定义小部件,是否可以使TextView以这种方式呈现,并且如果我需要完全自定义,那么做这样的事情的好方法是什么?

21
查找与给定输入关联的html标签
假设我有一个html表单。每个输入/选择/文本区域将具有一个对应<label>的for属性,该属性设置为其同伴的ID。在这种情况下,我知道每个输入将只有一个标签。 给定javascript中的input元素(例如,通过onkeyup事件),找到与其关联标签的最佳方法是什么?
110 javascript  html  label 

2
matplotlib:颜色条及其文本标签
我想为创建colorbar图例,以heatmap使标签位于每种离散颜色的中心。从这里借来的示例: import matplotlib.pyplot as plt import numpy as np from matplotlib.colors import ListedColormap #discrete color scheme cMap = ListedColormap(['white', 'green', 'blue','red']) #data np.random.seed(42) data = np.random.rand(4, 4) fig, ax = plt.subplots() heatmap = ax.pcolor(data, cmap=cMap) #legend cbar = plt.colorbar(heatmap) cbar.ax.set_yticklabels(['0','1','2','>3']) cbar.set_label('# of contacts', rotation=270) # put the major ticks at …



7
R中的智能点标签放置
1)是否有任何R库/函数可以在R图中实现INTELLIGENT标签的放置?我尝试了一些,但它们都是有问题的-许多标签彼此重叠或与其他点(或图中的其他对象重叠),但我发现这很难处理。 2)如果没有,有什么方法可以通过特定问题点的标签放置来舒适地帮助算法?需要最舒适有效的解决方案。 您可以使用我的可复制示例来测试和测试其他可能性,并查看是否能够获得比我更好的结果: # data x = c(0.8846, 1.1554, 0.9317, 0.9703, 0.9053, 0.9454, 1.0146, 0.9012, 0.9055, 1.3307) y = c(0.9828, 1.0329, 0.931, 1.3794, 0.9273, 0.9605, 1.0259, 0.9542, 0.9717, 0.9357) ShortSci = c("MotAlb", "PruMod", "EriRub", "LusMeg", "PhoOch", "PhoPho", "SaxRub", "TurMer", "TurPil", "TurPhi") # basic plot plot(x, y, asp=1) abline(h = 1, …
102 r  plot  label 

21
如何为iOS应用程序设置UILabel的左上对齐?
我在笔尖文件中添加了一个标签,然后要求该标签具有左上对齐。由于我在运行时提供文本,因此无法确定有多少行。因此,如果文本仅包含单行,则显示为垂直居中对齐。这种对齐方式与我前面的相应标签不匹配。 例如: 看起来很奇怪:( 有什么方法可以将标签文本设置为左上对齐?


10
属性文本中心对齐
我已经尝试了所有内容,但似乎无法以本文为中心。有人可以告诉我错误在哪里。 NSMutableParagraphStyle *paragraphStyle = NSMutableParagraphStyle.new; paragraphStyle.alignment = NSTextAlignmentCenter; label.attributedText = [[NSAttributedString alloc] initWithString:cell.EventTitle.text attributes:@{NSForegroundColorAttributeName : [UIColor whiteColor],NSParagraphStyleAttributeName:paragraphStyle,NSBaselineOffsetAttributeName : @0,NSFontAttributeName : [UIFont fontWithName:@"BrandonGrotesque-Black" size:34]}];



3
如何在ggplot2的构面中添加常规标签?
我经常会提供数值作为方面。我希望提供足够的信息来解释补充性标题中的这些构面值,类似于轴标题。标签程序选项会重复很多不必要的文本,并且不适用于较长的变量标题。 有什么建议么? 默认值: test<-data.frame(x=1:20, y=21:40, facet.a=rep(c(1,2),10), facet.b=rep(c(1,2), each=20)) qplot(data=test, x=x, y=y, facets=facet.b~facet.a) 我想要的是: 我在ggplot中能做的最好的事情: qplot(data=test, x=x, y=y)+facet_grid(facet.b~facet.a, labeller=label_both) 如@Hendy所示,类似于: 向ggplot2绘图添加辅助y轴-使其完美
82 r  label  facet  ggplot2 

3
在代码中设置WPF标签的Style属性?
在App.xaml中,我有以下代码: <Application.Resources> <Style x:Key="LabelTemplate" TargetType="{x:Type Label}"> <Setter Property="Height" Value="53" /> <Setter Property="Width" Value="130" /> <Setter Property="HorizontalAlignment" Value="Left" /> <Setter Property="Margin" Value="99,71,0,0" /> <Setter Property="VerticalAlignment" Value= "Top" /> <Setter Property="Foreground" Value="#FFE75959" /> <Setter Property="FontFamily" Value="Calibri" /> <Setter Property="FontSize" Value="40" /> </Style> </Application.Resources> 这旨在为我的标签提供通用模板。 在主要的XAML代码中,我具有以下代码行: <Label Content="Movies" Style="{StaticResource LabelTemplate}" Name="label1" /> 但是,我想通过代码初始化Style属性。我努力了: …
82 c#  wpf  user-interface  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.