navItem
The navItem created by slicePathFunction, this stores svg data for navSlice, navLine and navTitle. Every navItem stores his itemIndex and can be selected or hovered state.
navTitle The navTitle can be text, svg path, image and positioned by titlePosX and titlePosY properties. You can override font of text with titleFont and set the width and height of an image or path with titleWidth and titleHeight properties.
!!! Source code !!!
//Title defined by path
navItem.navTitle = navItem.wheelnav.raphael.path(currentTitle.path);
//Title defined by image
navItem.navTitle = navItem.wheelnav.raphael.image(currentTitle.title, slicePath.titlePosX, slicePath.titlePosY);
navitem.titleWidth = 32;
navitem.titleHeight = 32;
//Title defined by text
navItem.navTitle = navItem.wheelnav.raphael.text(slicePath.titlePosX, slicePath.titlePosY, currentTitle.title);
navItem.titleFont = '100 24px Impact, Charcoal, sans-serif';