Here are the examples of the python api bokeh.models.Arc taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : calendar.py
License : GNU Affero General Public License v3.0
Project Creator : andrewcooke
License : GNU Affero General Public License v3.0
Project Creator : andrewcooke
def _arc(self, df, line_alpha=CALENDAR_ALPHA, color=CALENDAR_COLOR):
arc = Arc(x=CALENDAR_X, y=CALENDAR_Y, radius=CALENDAR_ARC_RADIUS,
start_angle=CALENDAR_START, end_angle=CALENDAR_END, direction='anticlock',
line_color=color, line_alpha=line_alpha)
return self._plot.add_glyph(ColumnDataSource(df), arc, name='with_hover' if df is self._df else None)
def _sqarc(self, df, line_alpha=CALENDAR_ALPHA, color=CALENDAR_COLOR):