Tagged Questions
-1
votes
1answer
16 views
Excel 2010 chart does not show x axis value
In Excel 2010, chart data series don't seem to show the X axis value. When you put your cursor on a certain data point, it shows "Series(Y axis value)"/ "Point(X axis value)"/ and "Value". The X axis ...
0
votes
0answers
43 views
Setting Excel Chart data range with VBA macro
I'm trying to set the data set for a chart object using a macro. The macro selects the correct range that I want (I check by using rng.Select and debugging) but when I right click the chart object ...
0
votes
0answers
18 views
Draw line on a OHLC chart in excel / vba [closed]
I've already been helped on this website a first time and it worked really well so I'm asking for your help again :)
I need to draw support/resistance lines on a chart that represents the price of a ...
0
votes
1answer
34 views
embed a button into an excel chart
Roughly speaking, I want to create a child class from Excel Chart to add the following features into the child:
add a button to the visual appearance of the chart (the button should have a fixed ...
0
votes
1answer
40 views
Excel: Plot only values that satisfy a certain condition
I'm trying to efficiently plot tens of thousands of data-points. For simplicity's sake lets say each data-point contains 2 values. The first value is a decimal number. The second value is a whole ...
0
votes
2answers
36 views
How to automatically extend the range of a chart using VBA?
The structure of my document can be seen from the image below. I wish to build a timeline chart from columns A (excluding cell A1, it is crucial for the chart that this particular cell is not ...
0
votes
1answer
24 views
Excel 2010 ClearComments deleting Chart Object
I've run across a rather weird bug, which I'm able to reproduce every time. At least I'm assuming it's a bug. If I call Cell.ClearComments while a chart has focus, then that chart gets removed.
The ...
0
votes
0answers
40 views
Excel 2010 .SetSourceData vba chart
Good morning,
I'm having a problem with selecting ranges for .SetSourceData for my stacked bar chart.
My ranges are noncontiguous. The start date is in column G, and the rest of the numbers are ...
0
votes
0answers
37 views
Excel 2007 Stacked Column Chart Display Subvalues [migrated]
So I have the following set of values in my excel sheet:
The values on the first column (very low, low, medium, high) are simply socio-economic layer indicators.
As you can see, everything is ...
0
votes
0answers
23 views
How to change the drawing order in Excel charts?
How can I change the drawing order in Excel charts? This is the result I have:
The light dots to the right are overlapped by the blue data, and is hardly visible at all. For some other charts I ...
0
votes
1answer
58 views
VBA Chart 3D Rotation
I was wondering if someone could help me with a VBA macro I'm working on. I'm simply selecting an unformatted chart and doing some simple formatting. By default, it's a regular pie graph. I'm trying ...
0
votes
2answers
56 views
Create a bar chart with ordered binary data
I want to create the chart linked below. I have data that is coded with a binary flag (0 = red, 1 = blue) that is also ordered. For example, the data I would use to hypothetically create the left hand ...
1
vote
0answers
36 views
Formatting the width of y-axis labels
I am working on a VBA Excel script that uses a pivot table to create a bunch of charts and copy them into a Word document, creating a report.
The charts come in pairs and, after pasting them, there's ...
1
vote
0answers
67 views
VBA script for adding labels to excel bubble chart
I am trying to add labels to a chart with four series. The series is Label, X, Y, size.
The VBA script below works well for one series. But I am trying to plot 4 data series (because I want to have ...
1
vote
1answer
71 views
Excel VBA only show labels for each series' max value
I am trying to create a macro which loops through series in a chart and only shows the maximum / minimum label dependent on what the max / min value is.
Some of the series will only have negative ...
1
vote
1answer
31 views
Variable as a part of variable name in it's declaration? Dealing with chart series
Is there a way how can I declare variables in a for loop and using the "int i" as a part of the variable name?
I'm trying to set some adjustments of my excel chart in a for loop and assigning ...
0
votes
1answer
272 views
How can I read an Excel File with JavaScript (without ActiveXObject)
my friend asked me to make for a simple application to generate the chart (bar, curves) from an Excel file, so I opted to use JavaScript as a language since I know already the powerfull chart.js.
...
0
votes
1answer
82 views
Python Excel Chart Type pywintypes.com_error
The following snippet of my code works fine. It creates a chart and sets it type to xlLine
chart = ws.Shapes.AddChart().Select()
xl.ActiveChart.ChartType = win32com.client.constants.xlLine
...
1
vote
1answer
55 views
Excel chart doesn't refresh
A colleague and I have an issue with the refreshing of charts in excel.
The issue is the chart doesn't update when the source data is changed. It is the first time it happens to me and I checked ...
0
votes
0answers
39 views
MS-Access Pivot Chart
Could someone help me to sort and arrange the Pivot Chart in MS-Access please. I could do this easily in MS-Excel, but not in MS- Access. I need a gap in between each Task + Budget in MS- Access chart ...
0
votes
1answer
89 views
Excel Chart Zoom-Out Function
I already coded a Zoom-In Function for Charts in Excel, but I dont know how to do the Zoom-Out with the Scrollbar Value.
Can anybody help me?
Private Sub Zoom_X_Change1()
With ...
2
votes
2answers
113 views
Precise process event timeline diagrams (e.g. in Excel)
I need to prepare such diagrams:
I think it's quite intuitive how to read this diagram and this is why I want to create a few of them for my project.
I am quite confused how to create them ...
0
votes
0answers
44 views
Can't get the range from excel worksheet c#
I'm trying to create a chart from a given range.
I have values between A1 and BQ11.
If I do the following: chartRange = xlWorkSheet.Range["A1", "J11"];, I get the graph correctly.
However, if I do ...
2
votes
0answers
105 views
Rotate X axis in Excel chart c#
I'm trying to rotate the X-Axis text in an Excel chart.
Here is my current code:
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
object misValue = ...
0
votes
2answers
178 views
How to create and format various charts in powerpoint based on excel data?
I have been trying to find a solution, be it a macro or a simple solution, to create and format charts in a powerpoint presentation. So far I could not find anything that would solve my issue.
The ...
0
votes
2answers
172 views
Excel, PHPExcel, Scatter plot (XY) and Highcharts. The structure of scatter plots in Excel
This question is part excel and charting question and part programming question.
Im using PHPExcel to convert chart data from a excel sheet into json. Im then using this json to convert it's data to ...
0
votes
0answers
19 views
Program or method to standardize figure format and create multiple, similar figures
I couldn't find documentation to help me with this problem - [EDIT: ...and the only recommendations I've gotten from colleagues is what I have mentioned below].
I'm developing 23 figures that must ...
1
vote
2answers
121 views
How to get the the source data of all the series of a chart in VBA?
With ActiveWorkbook.Sheets(1)
INSPECT_CHARTS_NUMBER = .ChartObjects.Count
For c= 1 To .ChartObjects.Count
Set INSPECT_CHART = .ChartObjects(c).Duplicate
.ChartObjects(c).Chart.SetSourceData ...
1
vote
1answer
95 views
Adding labels to markers in Excel from a column in C#
I have an excel sheet with 3 columns. Column B and C are my data and column A contains the labels for each point.
I had to use this to get my chart right
series1Point.XValues = ...
-3
votes
1answer
70 views
Changing size of points in an excel chart [closed]
I want to change the size of a point in my excel chart generated in C# using interop.
The points are just a little to big and I have to reduce them.
Thanks
1
vote
1answer
153 views
How to list properties of a chart object in VBA?
I want to clone(using VBA) some charts and be able to change them for that I need to know what they contain.
How to list properties of a chart object in VBA, more like an object dump in other ...
0
votes
2answers
165 views
Excel: How can I add custom gridline to a chart?
How can I add a custom gridline with a label at the exact same level as the first column in the chart (see the screenshot below).
Can this be done in VBA?
1
vote
2answers
132 views
Excel 2003 vba chart failed
So im getting a chart failed error and it seems like it is because of my name WBname but i cant figure it out. Had a similar question earlier but since this is a little different i thought i would ...
2
votes
1answer
66 views
Dynamically changing sheet titles for excel 2003 usign vba
I have a several xls files that have there sheet names the same as there filename. Since the sheet names are updated with each xls file, the code i currently have does not update dynamically.
Is ...
0
votes
0answers
65 views
Free library to export/save chart from a xlsx to a docx (as picture or object)
I´m using EPPLUS, and is awesome its performance. Using interop it took about 5 minutes to generate about 300 worksheets (50 datasheets and 250 chartsheets). Using EPPLUs, about 30 seconds.
The ...
0
votes
4answers
229 views
VBA: How to modify vba macro to make it work for every file? Please see below
So I have a macro that works for one particular file. How can I make it work for all my files? I have never used vba so any help would be highly appreciated. Specifically How do I change the name of ...
0
votes
3answers
419 views
3D Plotting from X, Y, Z Data, Excel or other Tools
I have data that looks like this:
1000 13 75.2
1000 21 79.21
1000 29 80.02
5000 29 87.9
5000 37 88.54
5000 45 88.56
10000 29 90.11
10000 37 90.79
10000 45 90.87
I ...
0
votes
0answers
25 views
Change format on the X axis
How to change the horiAxis1 format to a spécific format (Date("mm/yyyy"); in C#?
ChartObject Chart1 = (ChartObject)mWSheet1.ChartObjects(2);
Range chartRange = mWSheet2.UsedRange; ...
0
votes
0answers
162 views
Error when attempting to set pie chart title using C# Excel Interop
I am creating an Excel pie chart using Excel Interop. The chart is being created correctly, however when I go to set the title, I get a runtime exception that states: "This object has no title.".
...
1
vote
1answer
223 views
How can I use part of a given range in vba (excel) i.e. certain rows in the range
I have a range that references a table in excel.
I need to create a graph and therefore set the source data using my table range.
I want the source data to be the first row and last 2 rows from my ...
0
votes
1answer
87 views
Swapping axes plotting Scatter chart in VBA
Using the following code I get the graph I want exactly as I want it except that it plots the axes the wrong way round. How do I get it to change the X data to Y data and vice versa?
Sub ...
0
votes
1answer
338 views
Python, Excel, and Charts using win32com
Python and MS Excel question - using win32com, I'm able to create a chart within Excel but i'm unable to move it within a worksheet. I've found code online to generate the chart:
import ...
3
votes
1answer
282 views
Excel time series data plot
I am trying to plot some time series data, but in a way that has stumped me so far. The salient part here is that each data point is associated with an open date and a closed date. I would like a time ...
0
votes
2answers
462 views
Display a Excel chart in Html page
I have a EXCEL file containing multiple Tables and Charts.
I want to create a web page to display a particular Table and a Chart. I used java script to display the table.
But cant find a way to ...
0
votes
1answer
74 views
Excel Graph Issue
I'm trying to get the users in column 'A' displayed in the legend and the data next to the user in the bar. I'm not sure where the blank data is coming from nor why it's showing as 'Series'
I also ...
0
votes
1answer
409 views
Excel 2010 How to make multiple scatter charts from same data
Have a data set from which I need to make several scatter plots (date vs. value). Each charts is different, based on different filters. To make one chart, I can filter my data, and then chart it. But ...
0
votes
1answer
388 views
Add Variable Series to Chart w/ VBA
I have a spreadsheet that looks like this:
A 1/1/2013 100
A 2/1/2013 200
A 3/1/2013 300
B 1/1/2013 150
B 2/1/2013 175
B 3/1/2013 200
The three ...
0
votes
0answers
72 views
pivot chart order different than pivot table order [closed]
I generated a pivot chart from a pivot table. The chart type is stacked areas. The problem is that the order if the stacked areas is DIFFERENT than what is in the Pivot chart.
I already know how to ...
0
votes
1answer
167 views
Determining the value of a point in Excel VBA
I am trying to have the points in a chart change color if they are within certain value paramaters (i.e., >1 is green, <1 is red, anything else is blue). I cannot determine how to get VBA to give ...
2
votes
2answers
213 views
excel: get index of current chart
I create a new chart with
Sheets("DatenFilledChart").Select
ActiveSheet.Shapes.AddChart.Select
ActiveChart.ChartType = xlArea
ActiveChart.SetSourceData Source:=Range("DatenFilledChart!$B$4:$B$1004")
...




