I have a kendo chart where i can export the image from javascript side but it will ask for save the image but i wanted to store the image in particular path without asking and then export the image into excel and then add some data along with the image.Please help me how to acheive this functionality.
Have you seen http://demos.telerik.com/kendo-ui/chart-api/export ?
I think you can save the chart in either of the three mentioned formats.
And,i guess saving path can be mentioned in the same.
Related
Let's speak about graphs.
I know that a real interactive annotation can be done only with different stat-packages like R-shiny and similar.
But my question here is much easier and related to the image file format.
I would like to add something like a comment box or something related to a specific dot on an image (a plot in my case) that could be open with a mouse drag or click.
I don't want to know how to do it, or which softwares do I need.
The only question is, is there any image format that could allow the insert of this kind of things? gif, png, ... ?
Something similar to this, shown with a mouse click:
Yes. The TIFF file format allows you to store multiple frames in one file.
You could store a page with annotations and one without, or a page for each annotation.
Here is an example of a multi-page tiff.
This is what it looks like on Windows Photo Viewer when going to page 2:
I am new to d3 but I am hoping that it possible to create a chart in d3 and output the chart to a file without displaying it on a page first. Is it? I would like to include various charts in a pdf document using fpdf and import into the pdf a chart or two.
I have been searching around for a solution to this for some time now. While I can see that you can:
Use d3 (chart.js etc) to generate a chart and display it on screen in a page
Export the image to file on the server
And then create the pdf importing the saved image
But I want to avoid any on screen display and for the image of the chart to be saved to the server directly so that fpdf can import it in.
This seems to me something that would be required frequently but I can't seem to find a solution.
An option seems to be to use something like phantomjs as an interim step but I think that this needs to be running on my host. It would be great if it could be exported to file driectly from d3. Is this possible?
not sure if this is possible can you add a jpeg or another image to a form created in the vba section in excel? If so would anyone know how to go about doing this...
You are looking for the UserForm object, which has a picture property. There's a bit of info here on how to paste an image in a User Form control which you may find helpful. Best of luck!
I've created a Google Spreadsheet with logo images in one column of cells, but when I try to create a table to add into my website the images do not display in the table.
I need them to display so The logos are visible within a webpage? Does anyone know why the images are not displaying in table format, or how I can fix this.
Not sure which method did you choose to display images. My solution worked for images embedded with the IMAGE function and not showing inside the new spreadsheets, but showing inside the old. I must admit I haven't tested it with embedded documents but it should work too:
SPACE character is an offending character in the new Google spreadsheets when embedding images using the IMAGE function. Replace it with another, 'safe' character like '-' or '_'
Not sure how much this helps, since I don't know what you did/did wrong, but here's a pasted table with images from the new Google Sheets. The only thing of note is that in the pasted table, all images scale to the cell size with aspect ratios retained, ignoring the parameters in the spreadsheet.
formula: =IMAGE("https://www.google.com/images/srpr/logo3w.png")
copy/pasted into document:
original spreadsheet:
I am trying to take a chart(on it's own "sheet", not as an object inside of another "sheet"), and display it on a VB2010 windows form.
The only thing I could find was creating the chart using code, and then loading in the data series from excel. ie. Chart1.ChartType = "XYscatter" or something along those lines, and I haven't even gotten that to work right.
I have way to many charts to go through and manually set them to the way they should be. Is there an easy way to just use Imports Microsoft.Office.Interop to do something along the lines of
Chart1 = xlWorkBook.Charts("MyChart")
?
Your are on the right line, if you have specific questions about creating a chart with code, post what you've got and i'll see if i can help
If you want to display the chart on a .Net form it might be best to take an image of the chart and put that on the form
get a chart object:
Set Chart1 = xlWorkBook.Charts("MyChart")
copy it
Chart1.ChartArea.Copy
its now on the clipboard. you should be able to access from there in .Net as you see fit
To prove its there, you can paste it into a normal excel worksheet
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False