SharePoint gives different types of views as per your list type. When you try to create view you have 5 options.
- Standard View
- Datasheet View
- Calendar View
- Gantt View
- Access View
Well you can also create Chart view for custom lists.
Let’s say we have one custom list with fields Title,IsDeliverable, and Location
Create a new view from any of the standard view(e.g. All Items), and just save it with new name , say “Chart View”
Now open chart view page in SharePoint designer, and search for the “ListViewWebPart”, see the ListViewXml portion.
<ListViewXml xmlns=“http://schemas.microsoft.com/WebPart/v2/ListView”><View Name=“{D939D853-A9C3-4AC7-ACDA-56E3F5F8DB5A}”
Type=“HTML”
You will see one parameter “Type” with value = “HTML”
Just change it to “CHART” and save the page.
And your view will be converted from standard list view to fantastic chart view (like survey lists). Here remember to remove columns like “Title” where it’s a chance to have multiple values. Try to have only columns with data types like Choice, Yes/No, Number, Lookup
SharePoint Creates this views as per its types.
For some types you need to apply appropriate changes in ListViewXML to render the view perfectly. You can take the sample of it from list where it by default appears.
Following are the possible types you can give
| Type | View Name | By default appears in |
| HTML | Standard View | All lists |
| Subject View | Discussion | |
| Threaded View | Discussion | |
| Flat View | Discussion | |
| GANTT | Gantt View | Tasks, Project Tasks |
| GRID | Datasheet View | All Lists |
| CALENDAR | Calendar View | Calendar |
| CHART | Graphical Summary | Survey |
| AccessView |
Pls. leave your feedback if you found this post useful.




Kuldeep Singh said,
May 25, 2008 at 9:31 AM
Mind blowing!!!!
Its the same for what i was looking.
Just tell me how can we specify the type of Chart. like pie chart, bar chart etc.
Kuldeep Kadyan
Hector said,
June 13, 2008 at 1:51 AM
Excelent!!! Great Tip!
Will said,
September 29, 2008 at 11:42 PM
How do you remove the columns (fields) from displaying in your chart?
Dima said,
November 17, 2008 at 8:54 AM
Same problem: we have survey, which contains a First Name and Second Name fields, beside questions. So, how can i hide FN and SN from chart view?

I’ve already broken my mind in searching solution….
Diogo Kollross said,
July 17, 2009 at 2:45 PM
Excelent!!! Great Tip! (2)