Embed iframes from Google Sheets to Google Sites - iframe

I am embedding some charts from Google Sheets to Google Sites.
To do this I select Publish chart -> Embed -> Select "Image" instead of "Interactive" and then copy the code in my Google Site as an iframe.
However, I Get the chart with low quality, pixelated, in my Google Site.
Is there any way to get the chart with higher quality?
Also, I have tried to Embed Interactive charts instead of an Image, but it does not work. Why is that?

Related

Google Site Navigation Buttons Using URLs Stored in a Google Sheet

I am trying to add BACK and NEXT navigation buttons to my Google site.
However, I want the URLs that are associated with the BACK and NEXT buttons to come from a Google Sheet.
In other words, I want the BACK and NEXT buttons in the Google site to get their URLs from specific cells in a Google Sheet.
If this can be achieved, I can dynamically change the URLs for the BACK and NEXT buttons in the Google Sheet, based on answers to questions posed in previous pages of the Google Site.
Here's a simplified flow diagram.
If this cannot be achieve using Google Site's native button component, can someone offer another way of doing this and still use the Google Sheet as a reference for the URLs?
Perhaps by using Google Site's <EMBED> option, where I can embed two buttons, BACK and NEXT and their URLs are still pulled from a specified Google Sheet.
Thank You Kindly, in advance, for your very valuable guidance.

How to Scrape data from Indiegogo.com in google sheets via IMPORTXML formula

I am trying to take a funding number from Indiegogo.com via IMPORTXML function without any luck.
I have used this code to scrape data from Kickstarter and it worked.
=IMPORTXML("https://www.kickstarter.com/projects/pavlyukovskyy/lego-compatible-screenless-coding-for-ages-3-6", "//span[#class='ksr-green-500']")
However, it doesn't work for indiegogo.com. I am trying this for indiegogo:
=IMPORTXML(https://www.indiegogo.com/projects/zlight-smart-bedroom-hub/", "//span[#class='data-v-3acff91c']")
I've also tried
=IMPORTXML(https://www.indiegogo.com/projects/zlight-smart-bedroom-hub/", "//span[#class='basicsGoalProgress-amountSold']")
Both versions didn't give any result
I need to show funding sum in google sheets.
Please see the screenshot https://www.screencast.com/t/h2ZwVsXr33
Here is the URL https://www.indiegogo.com/projects/zlight-smart-bedroom-hub
Unfortunately you can't scrape data from that page using importxml function because the content on the page is rendered using javascript and importxml can't import javascript rendered webpages.
Easy way to check whether a web content is rendered via javascript is to deactivate javascript. So the data which you get after deactivating javascript is the data which you can import in Google Sheet using importxml.
To Deactivate Javascript on some specific page.
Open that webpage in Google Chrome.
In the address bar, before web address, you will see an icon (lock or i etc), click on that then click on site settings and then in "Permissions" section, select "block" option for javascript.
After that simply refresh the page.

Google Vizualization Charts - Save to File

I am using Google Vizualization API to create an organization chart.
The API itself does not seem to have a feature to save charts to JPEG, PDF etc.
What options do I have to save the chart to file? [this file will be sent as an email attachment]
There's a great guide to saving gviz charts as images here and a corresponding github gist. It works with SVG charts from the gviz series (note, no Flash).
You can't save the org chart as an image or PDF.
Unlike some of the other Google charts, the code for this creates divs on the page.
If you're not looking for an automated process, you could just take a screenshot of the chart, save it as an image & email it as an attachment.
http://code.google.com/apis/chart/interactive/docs/gallery/orgchart.html
Since you want it automated, the only solution I can think of is a third party control..and you'll probably have to pay for it.
Not many companies make org chart controls..even the popular companies like Telerik & Dundas have not ventured into it yet.
NWoods has a diagram control:
http://www.nwoods.com/components/dotnet/godiagram-overview.htm
There's another at orgchartcomponent.com
http://www.orgchartcomponent.com/doc.aspx
You'll probably have to check the documentation on how the charts are rendered.
If they are images, you can save it as a file.

adding google map in asp.net application

i am develope web application for factory i need to add google map with location of factory
in contact us web page.any help i am just beginging with web development
Easy way here does all the work for you.
Embedding a map into a website or blog
You can embed a simple map, a set of
driving directions, a local search, or
maps created by other users. Here's
how:
Ensure that the map you'd like to embed appears in the current map
display.
Click Link to this page in the top-right corner of the map.
In the box that pops up, copy the HTML under 'Paste HTML to embed in
website,' and paste it into the source
code of your website or blog.
If you'd like to adjust the size of the map before you embed it, just click
Customize and preview embedded map, select your preferred size, and take a
look at the preview map. Once you're happy with what you see, copy the HTML
that appears in the box at the bottom of the window.
Keep in mind that you won't be able to embed Traffic maps, Mapplets, and some
other Maps features.
Google Map API is just javascript. Which can be used in any web technology
follow this link you will get what you are looking for
http://code.google.com/apis/maps/documentation/javascript/
If your beginning, maybe you should try to learn web development first. Javascript, post/get mechanics, HTML/CSS validation. Tackling Google Maps integration right at the beginning of your learning process might slow down your project evolution. It's my opinion.
To learn google maps api, try to start at this address :
http://code.google.com/intl/en/apis/maps/documentation/javascript/introduction.html

Can you use the google analytics API to create the same type of graph as on your google analytics dashboard?

I'm curious to know if there is an easy way to creat a similar graph to embed google analytics into our cms for clients pages, so that they can see the same type of chart that google has on there analytics dashboard.
What exactly do you want? If you want to use data collected by Google Analytics, you can use its' Google Analytics Data Export API.
Yes - check out embeddedanalytics.com. You define the chart (metrics, dimensions, type) and simply embed a snippet of code into your site.
Disclosure: I work with embeddedanalytics.

Resources