Support service
Visualization
Home › SharePoint Dashboard Designer › Documentation › Use notes in charts created with SharePoint Dashboard Designer
Use notes in charts created with SharePoint Dashboard Designer
General
- Company
- Cross-site Lookup for SharePoint 2013 and SharePoint Online in Office 365
- Download Hardware ID Generator
- Download HelpDesk Server ID Generator
- Download Org Chart Server ID Generator
- Download Server ID Generator
- End-User Software License Agreement
- How to renew maintenance\subscription
- Main page
- Maintenance
- My tickets
- My tickets
- My tickets – test
- Partners
- Plumsail Actions
- Plumsail Actions Main Landing
- Plumsail Documents
- Plumsail Forms
- Plumsail Privacy Policy
- Plumsail Software Refund Policy
- SharePoint Dashboard Designer
- Dashboard Designer Download Links
- Documentation
- Add more series to a SharePoint Chart with Dashboard Designer
- Advanced
- Advanced
- Aggregation
- Build Simple Charts – Client Demographics (SharePoint)
- Build Simple Charts – Helpdesk Tags (SharePoint)
- Build Simple Charts – Maps with Geocoding API (SharePoint)
- Build Simple Charts – Sales Report (SharePoint)
- CEO Dashboard
- Chart
- Configure aggregation and sorting
- Create a Floor Plan for SharePoint and Office365
- Customize and rotate labels and tooltips in SharePoint charts
- Dashboard
- Dashboard Designer for SharePoint 2010 WSP Installation
- Dashboard Designer for SharePoint 2013 WSP Installation
- Data Source
- Display dashboard on SharePoint public site in Office 365
- Install Dashboard Designer to SharePoint 2010 (on-premises)
- Install Dashboard Designer to SharePoint 2013/2016/2019 (on-premises)
- Install Dashboard Designer to SharePoint Online (Office 365)
- Link chart to another chart
- Linking chart to a SharePoint list
- Linking chart to another chart
- Navigate over data by using draggable charts
- SharePoint List
- Style
- Use multiple lists in Dashboard Designer
- Use notes in charts created with SharePoint Dashboard Designer
- Sales Dashboard
- HelpDesk Dashboard
- Project Dashboard
- Link chart to a SharePoint list
- Navigate over data by using draggable charts
- Bubbles on a map
- Markers on a map
- Live Voting Chart
- Display dashboard on SharePoint public site in Office 365
- Download
- Install Licenses
- Store
- Support – SharePoint Dashboard Designer
- SharePoint Forms Designer
- SharePoint HelpDesk
- SharePoint Org Chart
- One last step to download your org chart
- Org Chart Documentation
- Add Org Chart to “Classic” page
- Add Org Chart to Teams tabs
- Advanced Web Part configuration
- Automatically scale boxes to fit visible area
- Change SharePoint Org Chart skin
- Customize box HTML template and CSS styles for SharePoint Org Chart in Office 365
- Differences between Org Chart version 3 and version 2
- Display awards and conditionally format SharePoint Org Chart
- Display dotted-line managers
- Display Skype for Business (Lync) presence
- Display vacancies in SharePoint Org Chart
- Drill down to current user by default
- Drill down to manager of user from URL by default
- Drill down to specific box using URL parameter
- Filter SharePoint Org Chart by Department
- Filtration syntax
- Filtration syntax for SharePoint list (On-Premises)
- Filtration syntax for User Profiles (On-Premises)
- GDPR compliance
- Hide assistant from subordinates
- How Plumsail Org Chart communicates with SharePoint User Profile service and Active Directory
- How to create an org chart with two root managers in SharePoint Online, SharePoint 2019 / 2016 / 2013 and Office 365
- How to display assistants
- How to make sure that User Profile Service has enough data
- How to print Org Chart for SharePoint and Microsoft Teams
- HTML templating syntax description
- Include and use fields from an additional list
- Install add-in to a site where you want to add an org chart
- Installation for Office 365
- Installation for SharePoint 2010
- Installation for SharePoint 2013 / 2016
- Installation for SharePoint 2019
- Installation of Org Chart for SharePoint 2010 as WSP package
- Installation of Org Chart for SharePoint 2013/2016 as WSP package
- Installation of Org Chart for SharePoint 2019 as WSP package
- JavaScript framework
- License Installation
- Licensing details
- Localization
- Localization in Org Chart for SharePoint 2013/2016
- Open Org Chart in full-screen mode on load
- Order employees boxes using a custom field
- Org Chart caching
- Org Chart for Office 365 Privacy Policy
- Org Chart for SharePoint 2010/2013 overview
- Org Chart for SharePoint 2019 prerequisites
- Org Chart Installation
- Quick Web Part configuration
- Resize web part dynamically to fit a page
- Show Org Chart based on a list data source for anonymous users
- Support of search in a list with more than 5000 items
- Use advanced Org Chart navigation
- Version history
- Version history – Office 365
- Version history – SharePoint 2010 version
- Version history – SharePoint 2013/2016 version
- Version history – SharePoint 2019 version
- What is Item ID (Root ID)
- Org Chart Download Links
- Store – SharePoint OrgChart
- Support – SharePoint OrgChart
- SharePoint Workflow Scheduler
- Store
- Style Guide
- Support minutes
- Support plans
- Test inline checkout
- test-1
- What is SharePoint Web Front End server (WFE)
- Workflow Actions Pack
- Как организована разработка в Plumsail
- Лицензионное соглашение (оферта)
- Лицензионное соглашение (оферта) от 11 апреля 2014 г.
- Лицензионное соглашение (оферта) от 23 марта 2016 г.
Getting started
Configuration
Using notes in charts created with SharePoint Dashboard Designer
This is a manual on how to use notes in Dashboard Designer’s charts(in this example we use a Line chart). Look at the screenshot. Each point has a note and a label, but they display different columns from a SharePoint list. It can be useful if a label is already used to display a value, but you need to display additional information related to specific points.

For the chart above we used a SharePoint list containing three fields: Total, Date, and Notes.

So, we have a line chart, where category axis displays Date (to display only a month, set Style -> Category axis -> Label format in {0:MMMM}) and value axis displays Total for each month.

Now, we only need to put the code below into Dashboard -> Advanced tab to add notes:
var handlers = {}; handlers.preRender = function(config, logger) { config.seriesDefaults.noteTextField = 'Notes'; //add Notes config.seriesDefaults.notes = { label: { position: 'outside' }, position: 'bottom', }; logger.debug('Configuration: ', config); return true; }