I'm not really familiar with Sharepoint, but I can say that Google Visualization API has no native support for it. You'll have to read the data from Sharepoint using whatever methods Sharepoint provides for reading the data (or other tools, such as the suggested SPServices library), and then build a DataTable<http://code.google.com/apis/visualization/documentation/reference.html#DataTable>from it yourself.
On Fri, Sep 3, 2010 at 10:34 PM, João Paulo Alquéres <[email protected]> wrote: > Hi, > > I would like to know if it is possilbe to natively load a Sharepoint > custom list in a GoogleVizApi DataTable to be used later to draw a > chart. > > Something like: > > var dt = new > google.visualization.DataTable.FetchData("SharepointList";"SharepointView") > > where FetchData would be a native method to catch the Sharepoint List > and put it into a DataTable using Columns and Rows as values. > > A workaround would be to use Sharepoint's native support for RSS (a > standard xml file). > Every list in sharepoint has a specific RSS file that could be used to > load the data like: > > var dt = new > google.visualization.DataTable.FetchXML("SharePointList.xml") > > I dont know if either one of the data sources (sharepoint/xml) are > natively supported by the Google Visualization API, so I would > appreciate your help. > > Best regards, > Paulo. > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-visualization-api%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-visualization-api?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
