chart.py (2117:cd2f6cff36df) chart.py (2181:e22fa74669cd)
1# Copyright (c) 2005-2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 17 unchanged lines hidden (view full) ---

26#
27# Authors: Nathan Binkert
28# Lisa Hsu
29
30class ChartOptions(object):
31 defaults = { 'chart_size' : (8, 4),
32 'figure_size' : [0.1, 0.1, 0.6, 0.85],
33 'title' : None,
1# Copyright (c) 2005-2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 17 unchanged lines hidden (view full) ---

26#
27# Authors: Nathan Binkert
28# Lisa Hsu
29
30class ChartOptions(object):
31 defaults = { 'chart_size' : (8, 4),
32 'figure_size' : [0.1, 0.1, 0.6, 0.85],
33 'title' : None,
34 'fig_legend' : True,
34 'legend' : None,
35 'legend_loc' : 'upper right',
36 'legend_size' : 6,
37 'colormap' : 'jet',
38 'xlabel' : None,
39 'ylabel' : None,
40 'xticks' : None,
41 'xsubticks' : None,

--- 44 unchanged lines hidden ---
35 'legend' : None,
36 'legend_loc' : 'upper right',
37 'legend_size' : 6,
38 'colormap' : 'jet',
39 'xlabel' : None,
40 'ylabel' : None,
41 'xticks' : None,
42 'xsubticks' : None,

--- 44 unchanged lines hidden ---