SAP Lumira Designer: How swap axis in Line Chart? - sap

How do you make the x-axis the y-axis and vice versa? I have tried dragging the values in their respective axis in Chart Configuration but it doesn't work.

Line charts cannot be switched on x and y axis.
This can be switched using Column & Bar charts. In SAP Lumira Bar charts have X-Axis as Measures and Y-Axis as Dimensions. Similarly, Column charts have Y-Axis as Measures and X-Axis as Dimensions.

I've also tried that and ended up using a different chart. If anyone wanted that particular graph inverted, he just right-clicks on the graph and chooses Horizontal. SAP Lumira is very, very limited as far as graphs goes.

Related

Tableau : Offset stacked bar chart by a negative number

We have a specific business requirement for visualizing data in a certain way.
The above graph needs to be offset by the "negative yellow bar" as below.
I have tried the Gantt chart method but it only works for a single bar chart.
I couldn't visualize multiple stacked bar charts.
Any pointers will be appreciated.

How to draw grouped bar chart in dimple js if x-axis is timeAxis and y-axis is measureAxis

Please help me out for drawing grouped bar chart in dimple js.
I have to draw the graph where x-axis is timeAxis and y-axis is measureAxis.
I have seen many code snippets when they have done this. But, i am unable to do this with x-axis as timeAxis.
Any help would be appreciated.
I'm afraid the time axis doesn't support grouping. If you want to use dimple the only way is to use a category axis (which does work with time dimensions, but will evenly space and size each time value regardless of real interval).

Can I create a single bar beside each stacked bar using zedgraph?

I currently have some stacked bar graphs created using zedgraph which work very well. The stacked graphs are displaying costs and the stacked bar graph breaks them into different sections. I now want to add a single bar beside each stacked bar to show the available capacity for that stacked bar? Is it possible to do this with Zedgraph?
Thanks
On the Zedgraph wiki there is an example with stacked bars and a line curve in the same chart, with the line curve being associated with the Y2 axis. It should be fairly simple to adapt this example, replacing the line curve with single bars.

How can I extend a line from two points to the edges of the plot area using Core Plot?

I'm using Core Plot to graph linear equations.
I would like to be able to supply two different data points and have a line drawn between them, but also extrapolated beyond the points themselves so that the line extends all the way to the edges of the plot area.
For example, given a 20x20 plot area with the origin centered and points at -5,-5 and 5,5, the line (green below) would extend all the way from -10,10 to 10,10 (blue below).
Is this possible? Is the best option just to find the plot range (which will be different each time) and find two points that are outside of it? I'm not sure if this will work; I have user interaction enabled and I want to make sure that the user can't accidentally pan far enough that the line will end.
Your idea of finding two endpoints outside the plot range is what I'd do. If you've limited the scrolling range, just pick points at the limits of that range. If not, you'll need to monitor changes to the plot space ranges with a plot space delegate and update the plot as needed.

How to move a Core Plot graph

I have a Core-Plot Graph within a Mac Application. But the inside table is appearing shifted down and to the left of the containing "frame/border" so that neither of the axis' are showing. I cannot figure out how to change this does anyone know what parameters I need to change to fix this?
Update: Sorry I did not realize I could upload an image, I have done so know and will try your suggestions in the mean-time.
Not sure what you mean by "inside table". It would be easier to offer suggestions if you could post a screenshot.
Without seeing what's wrong, here are some common areas to look at:
If you haven't already done so, look at the example apps included with Core Plot for ideas. The Plot Gallery app has many sample plots and the others are useful, too.
You may need to add padding (paddingLeft, paddingBottom, etc.) on the graph and/or plot area frame. Padding the graph pushes everything in away from the edges of the graph. Padding the plot area frame pushes the plot area in so the axes and titles can hang outside the plot area (the area where the plots are drawn).
If you want to keep an axes pinned to a specific place, e.g., the edge of the graph, set up a floating axis. Otherwise make sure the orthogonal coordinate is set (it defaults to 0). For example, the orthogonal coordinate for the x-axis is the y-value where the x-axis crosses the y-axis.