Add radial lines to radar chart - excel

I'm using Office 2013 Excel and making a radar chart. By default the concentric rings are visible, but I want spokes or radial lines from the center to each category on the outside. I can't find out how to do this.

It seems to be a bug in Excel 2013 (and 2016).
A workaround is:
Create a radar chart.
Change the chart type to one of the other two radar charts, for e.g. radar with markers.
Change the chart type back to the original radar chart and format the Y axis to have lines.

These are the steps that I follow to add radial lines:
Create radar chart;
Click on the radar chart to show the Chart Design tab on toolbar;
Click on Change Chart Type and select Radar, then "Radar with
Markers" or "Filled Radar";
Click on Add Chart Elements (on the toolbar), then click on Axes, More Axes Options...;
Click on Fill & Line icon (under the button "Axis Options"), find
Line section and click on Solid line.

How about the code below?
ActiveChart.Axes(xlCategory).hasMajorGridlines=true
Select the target chart on excel.
Press Alt+F11 on excel, then VBE opens.
Press Ctrl+G on VBE, then immediate window opens.
Paste the above code.
Place the cursor on the line of the code and press the enter key.
I made the file with PHPExcel and edit it with excel 2010.
p.s. I confirmed with Excel 2016 without PHPExcel, too.

Right click the rectangular edge of the overall chart.
Click "Chart Area" drop down.
Select "radar (value) axes" and click the pen icon to select a colour.

In Excel for Mac version 16,
1. Create your radar chart.
2. Change chart type to any other chat type.
3. With your new chat selected. Go to Insert==>Chart==>Radar (the chart now allows you to format Y axis).

Related

How to make a bar chart with 2-level header in powerpoint?

I want to create a bar chart in Powerpoint with two level header, the exact result I want is as below:
I actually created this sample chart in excel.
Now I am going to duplicate it in Powerpoint. However the most I can do is one level header as below:
When I enter the "edit data" session, it seems extending the select grid (purple grid) to include the year level is impossible. Would anyone please help me?
Select the "Select Data" dialog not the "Edit Data" dialog.
Then, select, "Edit" for the "Horizontal (Category) Axis Labels"
Then, re-select the axis to include both columns A and B.
Then select OK.
Boom, your chart works.

Transparent Bar Chart Excel 2016

I would like to make a stacked transparent chart like this in Excel 2016.
I cannot find the "format data series" option that this person is using.
http://excelgraphs.blogspot.ca/2013/03/overlayed-multiple-histograms.html
Can anyone please offer some suggestions?
You must select one of the series on chart, right click and on the bottom of dropdown menu you have Format Data Series .

Change color of data label placed, using the 'best fit' option, outside a pie chart - Excel 2010

I am working with a pie chart whose data labels are added using the best fit property. Most of those labels are placed by Excel inside the pie, but some of them are placed outside.
Because of some series colors are so strong, the data labels had to be defined as white. Of course, the labels placed outside the pie wont be visible if I don't manually change their color (to black, for instance)
What I am trying to do is to conditionally change the label's color according to where Excel placed it (white inside the pie, black outside it), as in the following image:
I have been searching for a solution, but it seems that nobody had a similar problem.
Does anyone know if Excel allows this or does someone know a trick to bypass it?
There is a way to do this in Excel.
When you click on the chart, and go to Layout under Chart Tools.
Once there, go to Data Labels.
When you click on that, it will display a drop-down menu. At the bottom of the menu, click on More Data Label Options.
It will pull up a new window. On the sidebar of the new window, click on Number.
Then, under Category click on Custom.
In the textbox shown under Format Code, type in [Black][<0.05]0%;[White][>=0.05]0%
Click Add.
It should format the numbers outside the pie chart in your example black, and the numbers inside the pie white. If you had different data, you could format it the same, but you would have to change the number in the brackets after the color to the number one higher than number outside of the pie. It would be like this: [Black][<(number one higher than number outside of the pie)]0%;[White][>=(number one higher than number outside of the pie)]0%
Screenshot of Pie Chart Formatting
Source:
http://chandoo.org/wp/2009/01/29/colors-in-excel-chart-labels-trick/

Excel: labels on a scatter chart, read from array

Here I have a chart
I did a right-click -> "Add labels" , and it read them from my a(H/C) row. Basically, I want it to read label values from the CO2/CH4 row instead, so they would be 0,0.5,1,2,5,10 instead. Of course, I want the chart itself to remain the same, so, the x values of dots are in row "b(O/C)", their y values are in "a(H/C)" row, and their respective labels are read from "CO2/CH4". Can it be done automatically and how (preferrably, without scripting magic)? Rewriting them manually is a pain, really.
You will get the desired results by following the steps below:
Step 1: Click on the Chart
Step 2: Select the Design Tab in Ribbon Bar (Note: “Design Tab” appears only when the Chart is selected)
Step 3: Click on “Select Data” feature in the Design Tab as shown in Screen Shot 1
Step 4: Click on Edit Button as shown in Screen Shot 2
Step 5: Change the Series Name Rage and the data range in “Series Y Values:” as highlighted in Screen shot 3
What about adding the different points as different series and using the series names as labels (instead of the y-values) ?
If you need the "line" between the points (or if you need to add a trendline...), keep the serie you already have (with every point) without labels
Excel 2013 added the capability to use text from worksheet cells as data point labels. If you don't have 2013 (your screen shot looks like 2010), or even if you do, you can use Rob Bovey's free Chart Labeler add-in

How do I annotate areas of a report chart

I've got a scatter chart in an SSRS report and a requiremetn to label each quadrant of the chart.
When I drop a text box with the label of each quadrant and get it to look just how I want it in the designer all seems well.
But when the report is run the flow based layout of the report put the text boxs vertically under need the scatter chart.
How do I get the text boxes to remain on top of the chart?
In designer
Rendered report
Consider adding the Quadrant labels as a chart title instead of a textbox. You will need to enable the CustomPosition property of the chart title to True in order to place the titles in the corners.
I am unable to post an image without some "reputation" but I was able to add the quadrant titles successfully.

Resources