Tagged Questions
A Label is a UI Element used for displaying text
30
votes
2answers
8k views
Rotating and spacing axis labels in ggplot2
I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part out ...
19
votes
6answers
747 views
Bubble chart label placement algorithm? (preferably in JavaScript)
I'd like to automatically place 100-200 bubble labels so that the following requirements are met:
Labels should not overlap
Labels should preferably not overlap bubbles
Label should be close to ...
18
votes
6answers
13k views
Can I see TFS file history with labels?
We currently are using both Visual Source Safe and Team Foundation Server at work (VSS for old projects, TFS for current or new projects).
We have always used Labels in source control for each build. ...
6
votes
12answers
208 views
Break nested loops
Can someone tell me how to break the main loop when I have nested loops?
Example*:
/*Main loop*/
for(int y = 0; y < 100; y+=10)
{
/*Sub loop*/
for (int x = 0; x < 100; x += 10)
{
...
6
votes
3answers
2k views
CSS to align label and input
HTML Code Snippet:
<fieldset id="o-bs-sum-buginfo">
<label for="o-bs-sum-bug-ErrorPrefix">Error Prefix</label>
<input type="text" id="o-bs-sum-bug-ErrorPrefix" ...
5
votes
2answers
66 views
Managing Labels in .net
I'm using VB 2008 express but this probably applies to all .net environments.
My question has to do with labels that do nothing. No events, and their text never changes. They just sit there above ...
5
votes
3answers
215 views
what programming languages support labels with break and continue statments?
I recently read about labelled statments in java and the ability to specify a label with the break and continue statements. What other languages support this sort of syntax ?
4
votes
4answers
149 views
Is it important to use <label> in HTML?
Excuse me for the maybe very stupid question, but my curiosity is killing me, and plus I'm new to this, but are using labels important in your markup, and why?
i.e.
<label ...
4
votes
5answers
529 views
can an input field have two labels?
Mary had a little form, and it's fields where labeled just so.
Whenever an error crept in, confusion it would sow.
I've got a label for each input field... pretty standard affair.
After validating ...
4
votes
2answers
135 views
Running out of label names in assembly
Heyo,
My class at college has us writing programs in assembly. I have never truly appreciated the ease of C until now.
Now, when I program in assembly, I often have to make while/for/if loops and ...
4
votes
2answers
669 views
Add subgroup labels to a jitter plot in ggplot2
I have a nearly-boxplot like jitter-plot:
dt <- rbind(se,cb,cb.se)
qplot(ds, size, data=dt, geom="jitter", colour=root, facets = test ~ .)
I'd love to put a summary label for each group in the ...
3
votes
1answer
28 views
django specifying multiple labels
By default, when a form is created in django using ModelForm, the labels for each field are basically the name of each field with the first letter capitalized. However, I want to write my own labels ...
3
votes
1answer
175 views
How to set the labels size on a pie chart in python
I want to have labels with small size on a piechart in python to improve visibility
here is the code
import matplotlib.pyplot as plt
frac=[1.40 , 10.86 , 19.31 , 4.02 , 1.43 , 2.66 , 4.70 , 0.70 , ...
3
votes
1answer
65 views
Possible to create tilted column labels with CSS?
Is it possible to create vertical or slanted column labels on the columns of a table, using CSS?
3
votes
4answers
331 views
using labels in java without “loops”
I always thought that the labels must be used only with loops but it seems not. Giving such code:
public class LabelTest {
public static void main(String[] args) {
label1: ...
3
votes
2answers
78 views
What is the point of using labels in javascript (label: stuff here) outside switches?
What is the point of using labels in javascript (label: stuff here) outside switches?
3
votes
3answers
86 views
c# what is the efficent way to do this code - style php “eval”
i have a windows application in c# , in the form i have 12 labels with the names
label1, label2 , ...............
i have array of 12 numbers (after some calculate)
like :
int[] nums = new ...
3
votes
3answers
8k views
ClearCase: Find files having exactly one specific label and not more
I'd like to find files in ClearCase that are labeled with a specific label but that do not have any other labels set.
For example, if I have files labeled like this:
file1 LBL_A, LBL_B
file2 LBL_A
...
2
votes
1answer
54 views
How can I make the xtick labels of a plot be simple drawings using matplotlib?
Instead of words or numbers being the tick labels of the x axis, I want to draw a simple drawing (made of lines and circles) as the label for each x tick. Is this possible? If so, what is the best way ...
2
votes
5answers
47 views
Can't change the text on an object?
I can't seem to change the text on any object - I've tried both labels and buttons so far. Why doesn't this work?
void Button1Click(object sender, EventArgs e)
{
for(int i = 60; i ...
2
votes
1answer
144 views
Matplotlib: Label points on mouseover
I have a scatter plot with several thousand points. This post tells me how to label them:
Matplotlib: How to put individual tags for a scatter plot
But that will look like a disaster with so many ...
2
votes
1answer
489 views
pyplot axes labels for subplots
right now, i have the following plot:
import matplotlib.pyplot as plt
fig2 = plt.figure()
ax3 = fig2.add_subplot(2,1,1)
ax4 = fig2.add_subplot(2,1,2)
ax4.loglog(x1, y1)
ax3.loglog(x2, y2)
...
2
votes
1answer
99 views
Adding labels to a pv.Layout.Stack (streamgraph) in Protovis
I'm working with the Protovis library to do a streamgraph of data. I want to label the different layers with the "words" array. I can't seem to get the words to line up how I'd like. I want them to be ...
2
votes
1answer
361 views
Remove labels from JFreeChart Pie Chart
public static JFreeChart createChart(String title, List <Result> results){
DefaultPieDataset pieDataset = new DefaultPieDataset();
Iterator<Result> itr = results.iterator();
...
2
votes
2answers
349 views
How to add greek character to axis title in R?
I want to add a greek character to the y-axis of my barplot in R.
The problem is that I need this character to be integrated in the title. I want to write:
Diameter of aperture ("mu"m)
in the axis ...
2
votes
2answers
351 views
CorePlot XAxis Labels not displaying
Hey,
Using CorePlot recently but the Problem is, that the Labels I set don“t show up, the one thing I can see are the major and minor TickLine, but also only above the x-line not below.
Here is my ...
2
votes
2answers
119 views
Issue aligning radio button with label
Hi I have already read posts which suggest using style="vertical-align: middle;"
however this is not working for me. I am a beginner so I was hoping somebody could take a look. I've been playing ...
2
votes
1answer
663 views
matplotlib matshow labels
I start using matplotlib a month ago, so I'm still learning.
I'm trying to do a heatmap with matshow. My code is the following:
data = numpy.array(a).reshape(4, 4)
cax = ax.matshow(data, ...
2
votes
2answers
2k views
Google Maps API: Adding letters to my markers on my google map
I'm trying to add a letter to my marker and then have multiple markers (14 to be accurate) with letters. l have so far done this without success. I'm a complete novice with code and google API.
Can ...
2
votes
1answer
1k views
Print simple numbers on label printer (Brother, Dymo, etc) from C# (.NET)
As part of a project I'm working on, I need to automate a label printer. It will be one of those inexpensive USB printers from Brother or Dymo (open to other suggestions). All it needs to do is print ...
1
vote
1answer
39 views
How do you make just the x-lab label italics and NOT the y-lab label as well? (in R)
How do you make just the x-lab label italics and NOT the y-lab label as well? The only
command I can find (font.lab=3) makes both the x-lab and y-lab labels italics. I am creating barplots in R that ...
1
vote
1answer
31 views
Switch off the labels on axes
I'm using axes1 on a GUI to show images in. However, I don't know how to make the labels on axes1 invisible.
Any ideas?
1
vote
2answers
67 views
Get an asp.net Label control using javascript
I have a label control with in a form view that displays the sum of few textboxes.
I am not able to get the id of label tb_TA_2_6 in java script.
i tried
<script type ="text/jscript" language= ...
1
vote
1answer
40 views
How to force core plot library not to localize labels?
How to stop localization from work even if i changed my region format
I am using Cpttimeformatter and i found a readonly property returns the locale identifier
...
1
vote
2answers
78 views
format axis labels in lattice
How can I put my axis labels in a convenient format in lattice?
require(stats)
xyplot(lat*1000000 ~ long, data = quakes)
gives me y-labels like -3.5e+0.7. I would want lattice to write the whole ...
1
vote
1answer
92 views
Commas in gnuplot labels
I'm plottng monetary data with gnuplot and currently I've managed to set the labels on the y axis to be floating point values with no decimals (rather than exponentials) but I want to be able to add ...
1
vote
1answer
76 views
Label.Text last char in string gets moved to front of string, why?
I have a c# program with several forms and labels. Some of these labels are acting weird, the last char in the .Text Property shows up in the beginning of the char.
For Example:
In the property ...
1
vote
4answers
65 views
How to rewrite java code without use of labels?
categoryCheck: {
for (String allowedCategory : allowedCategories) {
if (evt.getLoggerName().startsWith(allowedCategory)) {
break categoryCheck;
}
...
1
vote
1answer
81 views
Label on SMT-LIB 2.0 assertions in z3
Could you tell me how to name assertions in a z3 SMT-LIB 2.0 benchmark? I would prefer to use the standard syntax of SMT-LIB, but as z3 seems not to understand it, I'm just looking for one working ...
1
vote
0answers
140 views
WPF Toolkit: display a label above each line in LineSeries Chart
I'm trying to display a label on a lineseries in a WPFToolkit chart. The result I'm looking for would be something like this:
LineSeries with labels
Is there a way to easily do this?
1
vote
2answers
59 views
How to find preceding label with Cleartool
I'm trying to compare files between two labels with cleartool but I can't seem to figure out how to find the preceding label to the label given.
As for now my command looks like this
cleartool find ...
1
vote
2answers
132 views
Localize text into chinese using custom fonts
I know how to use custom fonts to display CCLabels. I also figured out how to localize the Labels. But I am wondering if there is anyway to display the localized text using custom fonts.
For example ...
1
vote
2answers
1k views
Highcharts problem - showing labels in zoomable chart
I have a zoom column chart with more then 200 categories in xAxis. Consequently, when it is in the initial state (scale 1:1), all these guys are shown under the X axis, and it's impossible to read ...
1
vote
3answers
493 views
Adjust label positioning in Axes3D of matplotlib
I am having trouble with axes labels overlapping ticks labels in matplotlib. I've tried to reposition the labels "manually" by applying transforms or by calling set_y(), but no avail.
Here's a ...
1
vote
1answer
30 views
References to self-created environments in latex
How is possible to define labels and corresponding references to a self-defined environment within latex?
Example:
\newcounter{fpcounter}
\newenvironment{fp}[2]
{
\stepcounter{fpcounter}
\label{#1}
...
1
vote
3answers
905 views
Help with multiple markers with labels in Google Maps
I'd like to implement multiple markers with labels (documented here: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.0.1/docs/examples.html) and I'm having some ...
1
vote
1answer
300 views
ASP.NET Charting Value Labels
I'm using the ASP.NET Charting Toolkit (http://code.msdn.microsoft.com/mschart) and am wondering if there is a way to turn the labeling of the stacked chart to on. As a default, when I plot my data ...
1
vote
1answer
110 views
jQuery: optimze code (background in labels)
I have this jQuery code and I'm not sure if it can be optimized (shorten):
//Checkboxes highlight
$('.show-results-from label').addClass('active');
$('input:checkbox').click(function(){
if ...
1
vote
2answers
368 views
How to handle long labels on y-axis in Dojo Charts?
I have long labels on y-axis in dojo bar chart. In Firefox 3.6, they are overlapping on to the bars and in IE8, they are clipped.
Help me with this please. Since I am a new user, I am not allowed to ...
1
vote
1answer
296 views
Trying to print Avery L7173 labels with PHP
I need a solution to produce mailing labels (Avery L7173) for a list of 2500 address entries.
On the backend we have Linux Server with PHP. Python is an option. No X window.
As we have never done ...