Remove label in Primefaces Line Chart - primefaces

I have a primefaces line chart that appears between the graph series its values.
I followed the primefaces documentation, but instead of showing the "LinearChart", it shows "CategoryChart"
I need to disable these labels, how do I do this?
Below image of my chart.
line graphic - I want to remove the labels that are embedded in the graph lines

I solved the problem!
There was the following code in my method ...
lcm.setShowPointLabels(true); // lcm is LineCharModel
It made appear the labels in line chart.

Related

SSRS - Horizontal Strip Lines not showing in the chart

I am trying to plot a static value of 3% horizontally in a line chart using StripLines property. I could see the strip line showing in the report designer but it doesn't show me when I preview the report.
Below are my strip line property settings -
The final result does not give me the stripline at the desired location in the graph -
Am I missing any property setting here? Any help would be highly appreciated.

SSRS Bubble Chart Lines

Is it possible to hide data label lines in a bubble chart. I cannot seem to find a way to hide the lines. I have tried using 'No Colour' in the ÇalloutLineColor section of the chart but it wont allow you to use a transparent colour.
What i want is to have all the names next to the bubble chart as is showing in the image below, but i want to remove the lines that point to the bubble from the name.
Thanks in advance.
EDIT
After disabling the smart label options, i am know getting the names overlapping. I changed the Rotation and Inclination to 0 but the names are still overlapping. Any ideas?
In the Chart Series Under SmartLabels set Disabled to True

Report Builder 3.0 Line Chart Labels

I would like to only show the last data point label on a line chart per series. Anyone know how how I can hide the labels except for the last data point either using the Visible Property or the Label values?

p:chart long labels not wrapping

I am trying to draw a bar chart using PrimeFaces. I can draw the chart properly but problem is variables in the x-axis could be too long.I want display next line if more than one word.How can I achieve this .Please help me out.

Report Builder 3.0, breaking out data field for Bar Chart

I'm using Report Builder 3.0 and trying to figure out if i can break out one datafield with the few values I need for my bar chart. The data looks like this;
[[44278,47411],[{"name":"$41,000/year goal","y":41000}],["",""]]
I want bar 1 to be the 44,278 value, bar 2 to be the 47,411 value and the 41000 to be embedded as a goal. I've attached a screenshot of how we have it working with other grid and charting products, but this is going to be embedded in a much more in-depth SSRS report. Any sort of help would be great as i'm new to the whole SSRS reporting system.
You can do this with a custom StripLine:
Right-click the vertical chart axis and click Vertical Axis Properties.
The axis properties are displayed in the Properties window.
In the Appearance section of the Properties pane, for the StripLines property, click the Edit Collection (…) button to open the ChartStripLine Collection Editor.
Click Add to add a new strip line to the collection.
Click StripWidth to specify the width of the strip line. If your goals will fluctuate, you might want to make it relative to your Goal e.g. =Fields!YourGoalField.Value/100
Set the StripWidthType property to Number.
Set the InvervalOffset value to =Fields!YourGoalField.Value.
Set the IntervalOffsetType value to Number.
More on StripeLines: http://technet.microsoft.com/en-us/library/dd239316.aspx
EDIT To get the Goal Label outside the Chart Area as depicted, we have to do a sort of hack:
Delete the StripLine Title as there is no way to get that outside the Chart Area.
Right Click the Chart and select Add New Title.
On your new Chart Title's Properties Pane
Set the Docking Position to Right Center.
Set the TextOrientation to Horizontal.
Adjust the Font style and color to match your spec.
Set the Caption Expression to =Format(Fields!YourGoal.Value,"$0,000") & "/year goal"
Here is where the hack comes in. In order to get the Goal label to line up with the Goal Line, you need to add a certain number of carriage return/line feeds to your Caption Expression. To do this, append & vbcrlf to the Caption Expression a bunch of times and keep testing until it lines up. You might also want to adjust the DockingOffset property to move the Label closer to the Chart Area.