How can I work out the extent of my domain using three different data dimensions? Consider the following data:
var data = [
  {
    "Date":"10-10-2013",
    "High1" : 3049,
    "High2" : 2100,
    "high3" : 43
  },
  {
    "Date":"09-10-2013",
     "High1" : 3142,
    "High2" : 2010,
    "high3" : 23
  },
  {
    "Date":"08-10-2013",
    "High1" : 3099,
    "High2" : 2190,
    "high3" : 90
  }
I want to plot a line for High1, another for High2 and another for High3 so need to find the extent of all combined so I can create a y axis for my graph.
 
     
     
     
    