Fusion Charts vertical axis labels - customization

I'm trying to characterize the values on the vertical axis, labeling them as text. For example, a value of 25 would be "Low", 50 would be "Medium" and 75 would be "High". I don't see anywhere in the documentation that that can be done. The following graph would be my desired result:
Risk Assessment
In fact, there doesn't seem to be a way to do this in either Excel or Google Sheets (unless I'm missing something).
Any help would be appreciated.
I searched the documentation and found nothing to help solve my problem. I also researched Excel and Google sheets but to no avail.

Related

chart.js issue with display between two charts with same code

I'm having an issue with data vertically too close together in the first chart while the other is not.
Chart With Issues
Chart Without Issues
Transition between charts (scroll down halfway)
Actual Chart to view: http://www.ironclads.com/temp/chart.html
As you can see from the images the text and corresponding chart values are compressed together in the first chart but look ok in the second.
The code is the same and the values in the first chart are 1000, while the second chart is 703. Is this why it compresses the first chart values? If so, is there anything I can do programmatically to resolve the issue between charts or am I on the right track that I just need to get the entry count closer to the same in order for the two charts to look the same?
I'm attaching the code to the html chart file in question as a link below. I also try to limit the number of entries to 1000 or less per chart in order for them to not break the browser or the chart.
Any ideas you have or suggestions are greatly appreciated. Thank you.
http://www.ironclads.com/temp/chart.html
Ok folks. Figured it out with some help elsewhere. It appears a sub wrapper is in order, along with changing that subwrappper to fit. Here's the link to the fixed chart, you can compare the first with this and see the changes.
http://www.ironclads.com/temp/chart_fixed.html

Is there a function to multiply a cell and a value together if a checkbox is "TRUE"?

I'm a beginner in Google Sheets and Excel, I am trying to essentially have a cell be multiplied by 0.05 if I check the checkbox in it's given row.
In my attached photo, I want the "Price" column values be multiplied by "0.05" and give the result in the "ECF AMT" column if the checkbox in the "ECF?" column is TRUE. To give in an example, if I check marked the box for the first row I want it to multiply $260.00 by 0.05 and display the result in the ECF AMT column.
I've been messing around with different types of IF statements but I cannot seem to figure what I feel should be a basic formula. I've watched several YouTube videos and skimmed through some forum pages but cannot find a solution. Any help would be greatly appreciated!

Google Spreadsheets: Conditional formating based on text in another sheet

I'm trying to make a conditional formatting statement based on if a cell is filled with text on another sheet.
For example:
Sheet1 needs to change color of the cell A1 to blue if Sheet2 has text in cell A1
I used a couple of techniques as suggested in other stackoverflow questions, such as:
Conditional Formatting from another sheet (I cant find out how to do some sort of regexmatch in this statement)
I thought of some sort of line as (as a custom formula in conditional formatting):
A1(REGEXMATCH(INDIRECT(Sheet2!A1), ""),1 ,0))
but that doesnt work.
Hope someone can help me with this!
try:
=A1=NOT(ISBLANK(INDIRECT("Sheet2!A1")))

Is there an absolute column limit for Google's Charts?

I have finally gotten a column chart working for my data set. However, it only outputs fifteen columns, and the data set has 36 columns. It will output fifteen columns (or less if I limit the set to only items that are non-zero...but my boss wants all of the data shown) no matter what width the graph is set to.
Is there an absolute hard-coded column limit for graphs made by Google's Charts API, and if not, is there a way I can tell the graph to output everything?
I've just run into this myself, almost 7 years after the original problem report. Columns representing the right-side of my data are being silently un-drawn.
Let's look at the big picture. Somebody provides a charting library. They should be expected to show the data as best they can. In the case of a column table, that would be to show the first and last columns, and then choose which intermediate columns to show based on an algorithm that takes available pixels into account. It would then let the user zoom in to see the full set of columns within the selected range. This gives the developer using the chart the freedom to show an unlimited amount of data and not have to worry that someday columns at the end are simply not drawn.
Google is already choosing to not print some of the column labels due to space constraints, so they're already halfway to understanding the big picture.
Nowhere in the documentation does it explain this truncation of columns due to space constraints, or for any other chart type that I've seen. But you sure can choose your background colors in great levels of detail.
If I had known this restriction going in, I would have chosen a different chart package and not wasted my time. My choices now are to break my "Lifetime" data into yearly graphs that fit in the available space, which is clunky as hell, or migrate to a different chart package. Thanks Google. :^(
P.S. I tried to post this as a comment to the OP, but after using SO for years I don't have enough points...

Remove repeating text values in cells in google chart table

Is it possible to remove repeating text data in a Google visualization chart table?Looking for quick suggestions
FYI Following is an example of my question.!
In the column 'Test Plan Name'..I want to remove the repeating names... Can it possible?
Thank You
http://i.stack.imgur.com/bKjk7.jpg
As far as I searched I couldn't find any option to eliminate duplicate values. But we can count the null and duplicate values.Also we can perform joins,avg,sum,min,max on a google table chart's column values.
This documentation explains about this. Hope this will help you.