is there anyway to show dotted lines in google org chart API between 2 nodes?
i was looking at using the google org chart to display my o开发者_如何学JAVArg chart. Does this support having dotted lines between relationships as opposed to the default regular line
No - it is pretty basic. You can make specific nodes in the chart have a dotted border though, eg:
data.setRowProperty(2, 'style', 'border-style: dotted');
jQuery('.google-visualization-orgchart-linebottom, .google-visualization-orgchart-lineleft, .google-visualization-orgchart-lineright').css('border','1px dotted #cccccc');
精彩评论