def get_options(): return [ AxisService.title_x_axis("Average Ether Cost", size=30), AxisService.percentage_y_axis(), AxisService.x_linear_axis(), AxisService.x_tick_step_size(0.1), AxisService.axes_bold_label(axe_id="x", size=15), AxisService.axes_bold_label(axe_id="y", size=15), ]
def get_options(): return [ AxisService.title_x_axis("Maximum Damage Available", size=30), AxisService.title_y_axis("Damage Dealt", size=30), AxisService.x_linear_axis(), AxisService.min_max_y_axis(y_min=0, y_max=70), AxisService.x_tick_step_size(1), AxisService.axes_bold_label(axe_id="x", size=15), AxisService.axes_bold_label(axe_id="y", size=15), ]
def get_options(): return [ AxisService.percentage_y_axis(), AxisService.title_second_axis( axis_name='y_game_number', axis_title='Number of Games', ), AxisService.title_x_axis("Nemesis Name", size=30), AxisService.axes_bold_label(axe_id="x", size=15), AxisService.axes_bold_label(axe_id="y", size=15), ]
def get_options(): return [ AxisService.percentage_y_axis(), AxisService.title_second_axis( axis_name='y_game_number', axis_title='Number of Games', ), AxisService.title_x_axis("Mage Number", size=30), AxisService.x_linear_axis(), AxisService.x_tick_step_size(1), AxisService.axes_bold_label(axe_id="x", size=15), AxisService.axes_bold_label(axe_id="y", size=15), ]
def get_options(): return [ AxisService.percentage_y_axis("r"), AxisService.axes_bold_label(axe_id="r", size=12), AxisService.radial_axis_bold_label(size=13), ]