jdk/src/share/demo/applets/BarChart/example2.html
author jgish
Thu, 18 Apr 2013 16:33:11 -0400
changeset 17159 bb566a21b661
parent 2 90ce3da70b43
permissions -rw-r--r--
8012005: LogManager needs test to ensure stack trace is not being done to find bundle Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
<html>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
  <head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
    <title>Bar Chart (1.1)</title>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
  </head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
  <body>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
    <h1>Bar Chart (1.1)</h1>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
    <hr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
    <applet code="BarChart.class" width=400 height=300>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
      <param name=title value="Fruits">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
      <param name=columns value="6">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
      <param name=orientation value="vertical">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
      <param name=scale value="6">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
      <param name=c1_label value="Apple">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
      <param name=c1 value="10">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
      <param name=c1_color value="red">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
      <param name=c1_style value="solid">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
      <param name=c2_label value="Orange">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
      <param name=c2 value="20">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
      <param name=c2_color value="orange">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
      <param name=c2_style value="striped">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
        
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
      <param name=c3_label value="Lemon">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
      <param name=c3 value="5">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
      <param name=c3_color value="yellow">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
      <param name=c3_style value="solid">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
        
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
      <param name=c4_label value="Peach">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
      <param name=c4 value="30">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
      <param name=c4_color value="pink">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
      <param name=c4_style value="striped">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
      <param name=c5_label value="Pear">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
      <param name=c5 value="40">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
      <param name=c5_color value="green">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
      <param name=c5_style value="solid">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
      <param name=c6_label value="Plum"> 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
      <param name=c6 value="17">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
      <param name=c6_color value="magenta">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
      <param name=c6_style value="striped">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
      alt="Your browser understands the &lt;APPLET&gt; tag but isn't running the applet, for some reason."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        Your browser is completely ignoring the &lt;APPLET&gt; tag!      
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
      </applet>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
      <hr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
      <a href="BarChart.java">The source</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
  </body>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
</html>