ChartFactory.html 193 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <!-- NewPage -->
  3. <html lang="en">
  4. <head>
  5. <!-- Generated by javadoc (1.8.0_05) on Thu Jul 31 14:50:24 CEST 2014 -->
  6. <title>ChartFactory (JFreeChart Class Library (version 1.0.19-fx))</title>
  7. <meta name="date" content="2014-07-31">
  8. <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
  9. <script type="text/javascript" src="../../../script.js"></script>
  10. </head>
  11. <body>
  12. <script type="text/javascript"><!--
  13. try {
  14. if (location.href.indexOf('is-external=true') == -1) {
  15. parent.document.title="ChartFactory (JFreeChart Class Library (version 1.0.19-fx))";
  16. }
  17. }
  18. catch(err) {
  19. }
  20. //-->
  21. var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9,"i18":9,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":9,"i32":9,"i33":9,"i34":9,"i35":9,"i36":9,"i37":9,"i38":9,"i39":9,"i40":9,"i41":9,"i42":9,"i43":9,"i44":9,"i45":9,"i46":9,"i47":9,"i48":9,"i49":9,"i50":9,"i51":9,"i52":9,"i53":9,"i54":9,"i55":9,"i56":9,"i57":9,"i58":9,"i59":9};
  22. var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
  23. var altColor = "altColor";
  24. var rowColor = "rowColor";
  25. var tableTab = "tableTab";
  26. var activeTableTab = "activeTableTab";
  27. </script>
  28. <noscript>
  29. <div>JavaScript is disabled on your browser.</div>
  30. </noscript>
  31. <!-- ========= START OF TOP NAVBAR ======= -->
  32. <div class="topNav"><a name="navbar.top">
  33. <!-- -->
  34. </a>
  35. <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
  36. <a name="navbar.top.firstrow">
  37. <!-- -->
  38. </a>
  39. <ul class="navList" title="Navigation">
  40. <li><a href="../../../overview-summary.html">Overview</a></li>
  41. <li><a href="package-summary.html">Package</a></li>
  42. <li class="navBarCell1Rev">Class</li>
  43. <li><a href="class-use/ChartFactory.html">Use</a></li>
  44. <li><a href="package-tree.html">Tree</a></li>
  45. <li><a href="../../../deprecated-list.html">Deprecated</a></li>
  46. <li><a href="../../../index-files/index-1.html">Index</a></li>
  47. <li><a href="../../../help-doc.html">Help</a></li>
  48. </ul>
  49. </div>
  50. <div class="subNav">
  51. <ul class="navList">
  52. <li><a href="../../../org/jfree/chart/ChartColor.html" title="class in org.jfree.chart"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
  53. <li><a href="../../../org/jfree/chart/ChartFrame.html" title="class in org.jfree.chart"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
  54. </ul>
  55. <ul class="navList">
  56. <li><a href="../../../index.html?org/jfree/chart/ChartFactory.html" target="_top">Frames</a></li>
  57. <li><a href="ChartFactory.html" target="_top">No&nbsp;Frames</a></li>
  58. </ul>
  59. <ul class="navList" id="allclasses_navbar_top">
  60. <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
  61. </ul>
  62. <div>
  63. <script type="text/javascript"><!--
  64. allClassesLink = document.getElementById("allclasses_navbar_top");
  65. if(window==top) {
  66. allClassesLink.style.display = "block";
  67. }
  68. else {
  69. allClassesLink.style.display = "none";
  70. }
  71. //-->
  72. </script>
  73. </div>
  74. <div>
  75. <ul class="subNavList">
  76. <li>Summary:&nbsp;</li>
  77. <li>Nested&nbsp;|&nbsp;</li>
  78. <li>Field&nbsp;|&nbsp;</li>
  79. <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
  80. <li><a href="#method.summary">Method</a></li>
  81. </ul>
  82. <ul class="subNavList">
  83. <li>Detail:&nbsp;</li>
  84. <li>Field&nbsp;|&nbsp;</li>
  85. <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
  86. <li><a href="#method.detail">Method</a></li>
  87. </ul>
  88. </div>
  89. <a name="skip.navbar.top">
  90. <!-- -->
  91. </a></div>
  92. <!-- ========= END OF TOP NAVBAR ========= -->
  93. <!-- ======== START OF CLASS DATA ======== -->
  94. <div class="header">
  95. <div class="subTitle">org.jfree.chart</div>
  96. <h2 title="Class ChartFactory" class="title">Class ChartFactory</h2>
  97. </div>
  98. <div class="contentContainer">
  99. <ul class="inheritance">
  100. <li>java.lang.Object</li>
  101. <li>
  102. <ul class="inheritance">
  103. <li>org.jfree.chart.ChartFactory</li>
  104. </ul>
  105. </li>
  106. </ul>
  107. <div class="description">
  108. <ul class="blockList">
  109. <li class="blockList">
  110. <hr>
  111. <br>
  112. <pre>public abstract class <a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.228">ChartFactory</a>
  113. extends java.lang.Object</pre>
  114. <div class="block">A collection of utility methods for creating some standard charts with
  115. JFreeChart.</div>
  116. </li>
  117. </ul>
  118. </div>
  119. <div class="summary">
  120. <ul class="blockList">
  121. <li class="blockList">
  122. <!-- ======== CONSTRUCTOR SUMMARY ======== -->
  123. <ul class="blockList">
  124. <li class="blockList"><a name="constructor.summary">
  125. <!-- -->
  126. </a>
  127. <h3>Constructor Summary</h3>
  128. <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
  129. <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
  130. <tr>
  131. <th class="colOne" scope="col">Constructor and Description</th>
  132. </tr>
  133. <tr class="altColor">
  134. <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#ChartFactory--">ChartFactory</a></span>()</code>&nbsp;</td>
  135. </tr>
  136. </table>
  137. </li>
  138. </ul>
  139. <!-- ========== METHOD SUMMARY =========== -->
  140. <ul class="blockList">
  141. <li class="blockList"><a name="method.summary">
  142. <!-- -->
  143. </a>
  144. <h3>Method Summary</h3>
  145. <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
  146. <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
  147. <tr>
  148. <th class="colFirst" scope="col">Modifier and Type</th>
  149. <th class="colLast" scope="col">Method and Description</th>
  150. </tr>
  151. <tr id="i0" class="altColor">
  152. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  153. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createAreaChart</a></span>(java.lang.String&nbsp;title,
  154. java.lang.String&nbsp;categoryAxisLabel,
  155. java.lang.String&nbsp;valueAxisLabel,
  156. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  157. <div class="block">Creates an area chart with default settings.</div>
  158. </td>
  159. </tr>
  160. <tr id="i1" class="rowColor">
  161. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  162. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createAreaChart</a></span>(java.lang.String&nbsp;title,
  163. java.lang.String&nbsp;categoryAxisLabel,
  164. java.lang.String&nbsp;valueAxisLabel,
  165. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  166. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  167. boolean&nbsp;legend,
  168. boolean&nbsp;tooltips,
  169. boolean&nbsp;urls)</code>
  170. <div class="block">Creates an area chart with default settings.</div>
  171. </td>
  172. </tr>
  173. <tr id="i2" class="altColor">
  174. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  175. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createBarChart</a></span>(java.lang.String&nbsp;title,
  176. java.lang.String&nbsp;categoryAxisLabel,
  177. java.lang.String&nbsp;valueAxisLabel,
  178. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  179. <div class="block">Creates a bar chart with a vertical orientation.</div>
  180. </td>
  181. </tr>
  182. <tr id="i3" class="rowColor">
  183. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  184. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createBarChart</a></span>(java.lang.String&nbsp;title,
  185. java.lang.String&nbsp;categoryAxisLabel,
  186. java.lang.String&nbsp;valueAxisLabel,
  187. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  188. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  189. boolean&nbsp;legend,
  190. boolean&nbsp;tooltips,
  191. boolean&nbsp;urls)</code>
  192. <div class="block">Creates a bar chart.</div>
  193. </td>
  194. </tr>
  195. <tr id="i4" class="altColor">
  196. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  197. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createBarChart3D</a></span>(java.lang.String&nbsp;title,
  198. java.lang.String&nbsp;categoryAxisLabel,
  199. java.lang.String&nbsp;valueAxisLabel,
  200. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  201. <div class="block">Creates a bar chart with a 3D effect.</div>
  202. </td>
  203. </tr>
  204. <tr id="i5" class="rowColor">
  205. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  206. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createBarChart3D</a></span>(java.lang.String&nbsp;title,
  207. java.lang.String&nbsp;categoryAxisLabel,
  208. java.lang.String&nbsp;valueAxisLabel,
  209. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  210. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  211. boolean&nbsp;legend,
  212. boolean&nbsp;tooltips,
  213. boolean&nbsp;urls)</code>
  214. <div class="block">Creates a bar chart with a 3D effect.</div>
  215. </td>
  216. </tr>
  217. <tr id="i6" class="altColor">
  218. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  219. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBoxAndWhiskerChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.statistics.BoxAndWhiskerCategoryDataset-boolean-">createBoxAndWhiskerChart</a></span>(java.lang.String&nbsp;title,
  220. java.lang.String&nbsp;categoryAxisLabel,
  221. java.lang.String&nbsp;valueAxisLabel,
  222. <a href="../../../org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.html" title="interface in org.jfree.data.statistics">BoxAndWhiskerCategoryDataset</a>&nbsp;dataset,
  223. boolean&nbsp;legend)</code>
  224. <div class="block">Creates and returns a default instance of a box and whisker chart
  225. based on data from a <a href="../../../org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.html" title="interface in org.jfree.data.statistics"><code>BoxAndWhiskerCategoryDataset</code></a>.</div>
  226. </td>
  227. </tr>
  228. <tr id="i7" class="rowColor">
  229. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  230. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBoxAndWhiskerChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.statistics.BoxAndWhiskerXYDataset-boolean-">createBoxAndWhiskerChart</a></span>(java.lang.String&nbsp;title,
  231. java.lang.String&nbsp;timeAxisLabel,
  232. java.lang.String&nbsp;valueAxisLabel,
  233. <a href="../../../org/jfree/data/statistics/BoxAndWhiskerXYDataset.html" title="interface in org.jfree.data.statistics">BoxAndWhiskerXYDataset</a>&nbsp;dataset,
  234. boolean&nbsp;legend)</code>
  235. <div class="block">Creates and returns a default instance of a box and whisker chart.</div>
  236. </td>
  237. </tr>
  238. <tr id="i8" class="altColor">
  239. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  240. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBubbleChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYZDataset-">createBubbleChart</a></span>(java.lang.String&nbsp;title,
  241. java.lang.String&nbsp;xAxisLabel,
  242. java.lang.String&nbsp;yAxisLabel,
  243. <a href="../../../org/jfree/data/xy/XYZDataset.html" title="interface in org.jfree.data.xy">XYZDataset</a>&nbsp;dataset)</code>
  244. <div class="block">Creates a bubble chart with default settings.</div>
  245. </td>
  246. </tr>
  247. <tr id="i9" class="rowColor">
  248. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  249. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createBubbleChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYZDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createBubbleChart</a></span>(java.lang.String&nbsp;title,
  250. java.lang.String&nbsp;xAxisLabel,
  251. java.lang.String&nbsp;yAxisLabel,
  252. <a href="../../../org/jfree/data/xy/XYZDataset.html" title="interface in org.jfree.data.xy">XYZDataset</a>&nbsp;dataset,
  253. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  254. boolean&nbsp;legend,
  255. boolean&nbsp;tooltips,
  256. boolean&nbsp;urls)</code>
  257. <div class="block">Creates a bubble chart with default settings.</div>
  258. </td>
  259. </tr>
  260. <tr id="i10" class="altColor">
  261. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  262. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createCandlestickChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-boolean-">createCandlestickChart</a></span>(java.lang.String&nbsp;title,
  263. java.lang.String&nbsp;timeAxisLabel,
  264. java.lang.String&nbsp;valueAxisLabel,
  265. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  266. boolean&nbsp;legend)</code>
  267. <div class="block">Creates and returns a default instance of a candlesticks chart.</div>
  268. </td>
  269. </tr>
  270. <tr id="i11" class="rowColor">
  271. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  272. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createGanttChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.IntervalCategoryDataset-">createGanttChart</a></span>(java.lang.String&nbsp;title,
  273. java.lang.String&nbsp;categoryAxisLabel,
  274. java.lang.String&nbsp;dateAxisLabel,
  275. <a href="../../../org/jfree/data/category/IntervalCategoryDataset.html" title="interface in org.jfree.data.category">IntervalCategoryDataset</a>&nbsp;dataset)</code>
  276. <div class="block">Creates a Gantt chart using the supplied attributes plus default values
  277. where required.</div>
  278. </td>
  279. </tr>
  280. <tr id="i12" class="altColor">
  281. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  282. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createGanttChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.IntervalCategoryDataset-boolean-boolean-boolean-">createGanttChart</a></span>(java.lang.String&nbsp;title,
  283. java.lang.String&nbsp;categoryAxisLabel,
  284. java.lang.String&nbsp;dateAxisLabel,
  285. <a href="../../../org/jfree/data/category/IntervalCategoryDataset.html" title="interface in org.jfree.data.category">IntervalCategoryDataset</a>&nbsp;dataset,
  286. boolean&nbsp;legend,
  287. boolean&nbsp;tooltips,
  288. boolean&nbsp;urls)</code>
  289. <div class="block">Creates a Gantt chart using the supplied attributes plus default values
  290. where required.</div>
  291. </td>
  292. </tr>
  293. <tr id="i13" class="rowColor">
  294. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  295. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createHighLowChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-boolean-">createHighLowChart</a></span>(java.lang.String&nbsp;title,
  296. java.lang.String&nbsp;timeAxisLabel,
  297. java.lang.String&nbsp;valueAxisLabel,
  298. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  299. boolean&nbsp;legend)</code>
  300. <div class="block">Creates and returns a default instance of a high-low-open-close chart.</div>
  301. </td>
  302. </tr>
  303. <tr id="i14" class="altColor">
  304. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  305. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createHighLowChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-org.jfree.chart.axis.Timeline-boolean-">createHighLowChart</a></span>(java.lang.String&nbsp;title,
  306. java.lang.String&nbsp;timeAxisLabel,
  307. java.lang.String&nbsp;valueAxisLabel,
  308. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  309. <a href="../../../org/jfree/chart/axis/Timeline.html" title="interface in org.jfree.chart.axis">Timeline</a>&nbsp;timeline,
  310. boolean&nbsp;legend)</code>
  311. <div class="block">Creates and returns a default instance of a high-low-open-close chart
  312. with a special timeline.</div>
  313. </td>
  314. </tr>
  315. <tr id="i15" class="rowColor">
  316. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  317. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createHistogram-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.IntervalXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createHistogram</a></span>(java.lang.String&nbsp;title,
  318. java.lang.String&nbsp;xAxisLabel,
  319. java.lang.String&nbsp;yAxisLabel,
  320. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset,
  321. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  322. boolean&nbsp;legend,
  323. boolean&nbsp;tooltips,
  324. boolean&nbsp;urls)</code>
  325. <div class="block">Creates a histogram chart.</div>
  326. </td>
  327. </tr>
  328. <tr id="i16" class="altColor">
  329. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  330. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createLineChart</a></span>(java.lang.String&nbsp;title,
  331. java.lang.String&nbsp;categoryAxisLabel,
  332. java.lang.String&nbsp;valueAxisLabel,
  333. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  334. <div class="block">Creates a line chart with default settings.</div>
  335. </td>
  336. </tr>
  337. <tr id="i17" class="rowColor">
  338. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  339. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createLineChart</a></span>(java.lang.String&nbsp;title,
  340. java.lang.String&nbsp;categoryAxisLabel,
  341. java.lang.String&nbsp;valueAxisLabel,
  342. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  343. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  344. boolean&nbsp;legend,
  345. boolean&nbsp;tooltips,
  346. boolean&nbsp;urls)</code>
  347. <div class="block">Creates a line chart with default settings.</div>
  348. </td>
  349. </tr>
  350. <tr id="i18" class="altColor">
  351. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  352. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createLineChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createLineChart3D</a></span>(java.lang.String&nbsp;title,
  353. java.lang.String&nbsp;categoryAxisLabel,
  354. java.lang.String&nbsp;valueAxisLabel,
  355. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  356. <div class="block">Creates a line chart with default settings.</div>
  357. </td>
  358. </tr>
  359. <tr id="i19" class="rowColor">
  360. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  361. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createLineChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createLineChart3D</a></span>(java.lang.String&nbsp;title,
  362. java.lang.String&nbsp;categoryAxisLabel,
  363. java.lang.String&nbsp;valueAxisLabel,
  364. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  365. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  366. boolean&nbsp;legend,
  367. boolean&nbsp;tooltips,
  368. boolean&nbsp;urls)</code>
  369. <div class="block">Creates a line chart with default settings.</div>
  370. </td>
  371. </tr>
  372. <tr id="i20" class="altColor">
  373. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  374. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createMultiplePieChart-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.util.TableOrder-boolean-boolean-boolean-">createMultiplePieChart</a></span>(java.lang.String&nbsp;title,
  375. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  376. org.jfree.util.TableOrder&nbsp;order,
  377. boolean&nbsp;legend,
  378. boolean&nbsp;tooltips,
  379. boolean&nbsp;urls)</code>
  380. <div class="block">Creates a chart that displays multiple pie plots.</div>
  381. </td>
  382. </tr>
  383. <tr id="i21" class="rowColor">
  384. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  385. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createMultiplePieChart3D-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.util.TableOrder-boolean-boolean-boolean-">createMultiplePieChart3D</a></span>(java.lang.String&nbsp;title,
  386. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  387. org.jfree.util.TableOrder&nbsp;order,
  388. boolean&nbsp;legend,
  389. boolean&nbsp;tooltips,
  390. boolean&nbsp;urls)</code>
  391. <div class="block">Creates a chart that displays multiple pie plots.</div>
  392. </td>
  393. </tr>
  394. <tr id="i22" class="altColor">
  395. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  396. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart-java.lang.String-org.jfree.data.general.PieDataset-">createPieChart</a></span>(java.lang.String&nbsp;title,
  397. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset)</code>
  398. <div class="block">Creates a pie chart with default settings.</div>
  399. </td>
  400. </tr>
  401. <tr id="i23" class="rowColor">
  402. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  403. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">createPieChart</a></span>(java.lang.String&nbsp;title,
  404. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  405. boolean&nbsp;legend,
  406. boolean&nbsp;tooltips,
  407. boolean&nbsp;urls)</code>
  408. <div class="block">Creates a pie chart with default settings.</div>
  409. </td>
  410. </tr>
  411. <tr id="i24" class="altColor">
  412. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  413. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">createPieChart</a></span>(java.lang.String&nbsp;title,
  414. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  415. boolean&nbsp;legend,
  416. boolean&nbsp;tooltips,
  417. java.util.Locale&nbsp;locale)</code>
  418. <div class="block">Creates a pie chart with default settings.</div>
  419. </td>
  420. </tr>
  421. <tr id="i25" class="rowColor">
  422. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  423. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart-java.lang.String-org.jfree.data.general.PieDataset-org.jfree.data.general.PieDataset-int-boolean-boolean-boolean-boolean-boolean-boolean-">createPieChart</a></span>(java.lang.String&nbsp;title,
  424. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  425. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;previousDataset,
  426. int&nbsp;percentDiffForMaxScale,
  427. boolean&nbsp;greenForIncrease,
  428. boolean&nbsp;legend,
  429. boolean&nbsp;tooltips,
  430. boolean&nbsp;urls,
  431. boolean&nbsp;subTitle,
  432. boolean&nbsp;showDifference)</code>
  433. <div class="block">Creates a pie chart with default settings that compares 2 datasets.</div>
  434. </td>
  435. </tr>
  436. <tr id="i26" class="altColor">
  437. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  438. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart-java.lang.String-org.jfree.data.general.PieDataset-org.jfree.data.general.PieDataset-int-boolean-boolean-boolean-java.util.Locale-boolean-boolean-">createPieChart</a></span>(java.lang.String&nbsp;title,
  439. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  440. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;previousDataset,
  441. int&nbsp;percentDiffForMaxScale,
  442. boolean&nbsp;greenForIncrease,
  443. boolean&nbsp;legend,
  444. boolean&nbsp;tooltips,
  445. java.util.Locale&nbsp;locale,
  446. boolean&nbsp;subTitle,
  447. boolean&nbsp;showDifference)</code>
  448. <div class="block">Creates a pie chart with default settings that compares 2 datasets.</div>
  449. </td>
  450. </tr>
  451. <tr id="i27" class="rowColor">
  452. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  453. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-">createPieChart3D</a></span>(java.lang.String&nbsp;title,
  454. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset)</code>
  455. <div class="block">Creates a 3D pie chart using the specified dataset.</div>
  456. </td>
  457. </tr>
  458. <tr id="i28" class="altColor">
  459. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  460. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">createPieChart3D</a></span>(java.lang.String&nbsp;title,
  461. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  462. boolean&nbsp;legend,
  463. boolean&nbsp;tooltips,
  464. boolean&nbsp;urls)</code>
  465. <div class="block">Creates a 3D pie chart using the specified dataset.</div>
  466. </td>
  467. </tr>
  468. <tr id="i29" class="rowColor">
  469. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  470. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">createPieChart3D</a></span>(java.lang.String&nbsp;title,
  471. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  472. boolean&nbsp;legend,
  473. boolean&nbsp;tooltips,
  474. java.util.Locale&nbsp;locale)</code>
  475. <div class="block">Creates a 3D pie chart using the specified dataset.</div>
  476. </td>
  477. </tr>
  478. <tr id="i30" class="altColor">
  479. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  480. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createPolarChart-java.lang.String-org.jfree.data.xy.XYDataset-boolean-boolean-boolean-">createPolarChart</a></span>(java.lang.String&nbsp;title,
  481. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  482. boolean&nbsp;legend,
  483. boolean&nbsp;tooltips,
  484. boolean&nbsp;urls)</code>
  485. <div class="block">Creates a polar plot for the specified dataset (x-values interpreted as
  486. angles in degrees).</div>
  487. </td>
  488. </tr>
  489. <tr id="i31" class="rowColor">
  490. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  491. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createRingChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">createRingChart</a></span>(java.lang.String&nbsp;title,
  492. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  493. boolean&nbsp;legend,
  494. boolean&nbsp;tooltips,
  495. boolean&nbsp;urls)</code>
  496. <div class="block">Creates a ring chart with default settings.</div>
  497. </td>
  498. </tr>
  499. <tr id="i32" class="altColor">
  500. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  501. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createRingChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">createRingChart</a></span>(java.lang.String&nbsp;title,
  502. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  503. boolean&nbsp;legend,
  504. boolean&nbsp;tooltips,
  505. java.util.Locale&nbsp;locale)</code>
  506. <div class="block">Creates a ring chart with default settings.</div>
  507. </td>
  508. </tr>
  509. <tr id="i33" class="rowColor">
  510. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  511. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createScatterPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createScatterPlot</a></span>(java.lang.String&nbsp;title,
  512. java.lang.String&nbsp;xAxisLabel,
  513. java.lang.String&nbsp;yAxisLabel,
  514. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  515. <div class="block">Creates a scatter plot with default settings.</div>
  516. </td>
  517. </tr>
  518. <tr id="i34" class="altColor">
  519. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  520. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createScatterPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createScatterPlot</a></span>(java.lang.String&nbsp;title,
  521. java.lang.String&nbsp;xAxisLabel,
  522. java.lang.String&nbsp;yAxisLabel,
  523. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  524. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  525. boolean&nbsp;legend,
  526. boolean&nbsp;tooltips,
  527. boolean&nbsp;urls)</code>
  528. <div class="block">Creates a scatter plot with default settings.</div>
  529. </td>
  530. </tr>
  531. <tr id="i35" class="rowColor">
  532. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  533. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createStackedAreaChart</a></span>(java.lang.String&nbsp;title,
  534. java.lang.String&nbsp;categoryAxisLabel,
  535. java.lang.String&nbsp;valueAxisLabel,
  536. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  537. <div class="block">Creates a stacked area chart with default settings.</div>
  538. </td>
  539. </tr>
  540. <tr id="i36" class="altColor">
  541. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  542. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createStackedAreaChart</a></span>(java.lang.String&nbsp;title,
  543. java.lang.String&nbsp;categoryAxisLabel,
  544. java.lang.String&nbsp;valueAxisLabel,
  545. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  546. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  547. boolean&nbsp;legend,
  548. boolean&nbsp;tooltips,
  549. boolean&nbsp;urls)</code>
  550. <div class="block">Creates a stacked area chart with default settings.</div>
  551. </td>
  552. </tr>
  553. <tr id="i37" class="rowColor">
  554. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  555. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createStackedBarChart</a></span>(java.lang.String&nbsp;title,
  556. java.lang.String&nbsp;domainAxisLabel,
  557. java.lang.String&nbsp;rangeAxisLabel,
  558. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  559. <div class="block">Creates a stacked bar chart with default settings.</div>
  560. </td>
  561. </tr>
  562. <tr id="i38" class="altColor">
  563. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  564. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createStackedBarChart</a></span>(java.lang.String&nbsp;title,
  565. java.lang.String&nbsp;domainAxisLabel,
  566. java.lang.String&nbsp;rangeAxisLabel,
  567. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  568. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  569. boolean&nbsp;legend,
  570. boolean&nbsp;tooltips,
  571. boolean&nbsp;urls)</code>
  572. <div class="block">Creates a stacked bar chart with default settings.</div>
  573. </td>
  574. </tr>
  575. <tr id="i39" class="rowColor">
  576. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  577. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">createStackedBarChart3D</a></span>(java.lang.String&nbsp;title,
  578. java.lang.String&nbsp;categoryAxisLabel,
  579. java.lang.String&nbsp;valueAxisLabel,
  580. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</code>
  581. <div class="block">Creates a stacked bar chart with a 3D effect and default settings.</div>
  582. </td>
  583. </tr>
  584. <tr id="i40" class="altColor">
  585. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  586. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createStackedBarChart3D</a></span>(java.lang.String&nbsp;title,
  587. java.lang.String&nbsp;categoryAxisLabel,
  588. java.lang.String&nbsp;valueAxisLabel,
  589. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  590. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  591. boolean&nbsp;legend,
  592. boolean&nbsp;tooltips,
  593. boolean&nbsp;urls)</code>
  594. <div class="block">Creates a stacked bar chart with a 3D effect and default settings.</div>
  595. </td>
  596. </tr>
  597. <tr id="i41" class="rowColor">
  598. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  599. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.TableXYDataset-">createStackedXYAreaChart</a></span>(java.lang.String&nbsp;title,
  600. java.lang.String&nbsp;xAxisLabel,
  601. java.lang.String&nbsp;yAxisLabel,
  602. <a href="../../../org/jfree/data/xy/TableXYDataset.html" title="interface in org.jfree.data.xy">TableXYDataset</a>&nbsp;dataset)</code>
  603. <div class="block">Creates a stacked XY area plot.</div>
  604. </td>
  605. </tr>
  606. <tr id="i42" class="altColor">
  607. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  608. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createStackedXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.TableXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createStackedXYAreaChart</a></span>(java.lang.String&nbsp;title,
  609. java.lang.String&nbsp;xAxisLabel,
  610. java.lang.String&nbsp;yAxisLabel,
  611. <a href="../../../org/jfree/data/xy/TableXYDataset.html" title="interface in org.jfree.data.xy">TableXYDataset</a>&nbsp;dataset,
  612. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  613. boolean&nbsp;legend,
  614. boolean&nbsp;tooltips,
  615. boolean&nbsp;urls)</code>
  616. <div class="block">Creates a stacked XY area plot.</div>
  617. </td>
  618. </tr>
  619. <tr id="i43" class="rowColor">
  620. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  621. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createTimeSeriesChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createTimeSeriesChart</a></span>(java.lang.String&nbsp;title,
  622. java.lang.String&nbsp;timeAxisLabel,
  623. java.lang.String&nbsp;valueAxisLabel,
  624. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  625. <div class="block">Creates and returns a time series chart.</div>
  626. </td>
  627. </tr>
  628. <tr id="i44" class="altColor">
  629. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  630. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createTimeSeriesChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-boolean-boolean-boolean-">createTimeSeriesChart</a></span>(java.lang.String&nbsp;title,
  631. java.lang.String&nbsp;timeAxisLabel,
  632. java.lang.String&nbsp;valueAxisLabel,
  633. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  634. boolean&nbsp;legend,
  635. boolean&nbsp;tooltips,
  636. boolean&nbsp;urls)</code>
  637. <div class="block">Creates and returns a time series chart.</div>
  638. </td>
  639. </tr>
  640. <tr id="i45" class="rowColor">
  641. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  642. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createWaferMapChart-java.lang.String-org.jfree.data.general.WaferMapDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createWaferMapChart</a></span>(java.lang.String&nbsp;title,
  643. <a href="../../../org/jfree/data/general/WaferMapDataset.html" title="class in org.jfree.data.general">WaferMapDataset</a>&nbsp;dataset,
  644. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  645. boolean&nbsp;legend,
  646. boolean&nbsp;tooltips,
  647. boolean&nbsp;urls)</code>
  648. <div class="block">Creates a wafer map chart.</div>
  649. </td>
  650. </tr>
  651. <tr id="i46" class="altColor">
  652. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  653. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createWaterfallChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createWaterfallChart</a></span>(java.lang.String&nbsp;title,
  654. java.lang.String&nbsp;categoryAxisLabel,
  655. java.lang.String&nbsp;valueAxisLabel,
  656. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  657. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  658. boolean&nbsp;legend,
  659. boolean&nbsp;tooltips,
  660. boolean&nbsp;urls)</code>
  661. <div class="block">Creates a waterfall chart.</div>
  662. </td>
  663. </tr>
  664. <tr id="i47" class="rowColor">
  665. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  666. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createWindPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.WindDataset-boolean-boolean-boolean-">createWindPlot</a></span>(java.lang.String&nbsp;title,
  667. java.lang.String&nbsp;xAxisLabel,
  668. java.lang.String&nbsp;yAxisLabel,
  669. <a href="../../../org/jfree/data/xy/WindDataset.html" title="interface in org.jfree.data.xy">WindDataset</a>&nbsp;dataset,
  670. boolean&nbsp;legend,
  671. boolean&nbsp;tooltips,
  672. boolean&nbsp;urls)</code>
  673. <div class="block">Creates a wind plot with default settings.</div>
  674. </td>
  675. </tr>
  676. <tr id="i48" class="altColor">
  677. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  678. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createXYAreaChart</a></span>(java.lang.String&nbsp;title,
  679. java.lang.String&nbsp;xAxisLabel,
  680. java.lang.String&nbsp;yAxisLabel,
  681. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  682. <div class="block">Creates an area chart using an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>.</div>
  683. </td>
  684. </tr>
  685. <tr id="i49" class="rowColor">
  686. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  687. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createXYAreaChart</a></span>(java.lang.String&nbsp;title,
  688. java.lang.String&nbsp;xAxisLabel,
  689. java.lang.String&nbsp;yAxisLabel,
  690. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  691. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  692. boolean&nbsp;legend,
  693. boolean&nbsp;tooltips,
  694. boolean&nbsp;urls)</code>
  695. <div class="block">Creates an area chart using an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>.</div>
  696. </td>
  697. </tr>
  698. <tr id="i50" class="altColor">
  699. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  700. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYBarChart-java.lang.String-java.lang.String-boolean-java.lang.String-org.jfree.data.xy.IntervalXYDataset-">createXYBarChart</a></span>(java.lang.String&nbsp;title,
  701. java.lang.String&nbsp;xAxisLabel,
  702. boolean&nbsp;dateAxis,
  703. java.lang.String&nbsp;yAxisLabel,
  704. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset)</code>
  705. <div class="block">Creates and returns a default instance of an XY bar chart.</div>
  706. </td>
  707. </tr>
  708. <tr id="i51" class="rowColor">
  709. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  710. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYBarChart-java.lang.String-java.lang.String-boolean-java.lang.String-org.jfree.data.xy.IntervalXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createXYBarChart</a></span>(java.lang.String&nbsp;title,
  711. java.lang.String&nbsp;xAxisLabel,
  712. boolean&nbsp;dateAxis,
  713. java.lang.String&nbsp;yAxisLabel,
  714. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset,
  715. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  716. boolean&nbsp;legend,
  717. boolean&nbsp;tooltips,
  718. boolean&nbsp;urls)</code>
  719. <div class="block">Creates and returns a default instance of an XY bar chart.</div>
  720. </td>
  721. </tr>
  722. <tr id="i52" class="altColor">
  723. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  724. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createXYLineChart</a></span>(java.lang.String&nbsp;title,
  725. java.lang.String&nbsp;xAxisLabel,
  726. java.lang.String&nbsp;yAxisLabel,
  727. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  728. <div class="block">Creates a line chart (based on an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>) with default
  729. settings.</div>
  730. </td>
  731. </tr>
  732. <tr id="i53" class="rowColor">
  733. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  734. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createXYLineChart</a></span>(java.lang.String&nbsp;title,
  735. java.lang.String&nbsp;xAxisLabel,
  736. java.lang.String&nbsp;yAxisLabel,
  737. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  738. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  739. boolean&nbsp;legend,
  740. boolean&nbsp;tooltips,
  741. boolean&nbsp;urls)</code>
  742. <div class="block">Creates a line chart (based on an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>) with default
  743. settings.</div>
  744. </td>
  745. </tr>
  746. <tr id="i54" class="altColor">
  747. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  748. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYStepAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createXYStepAreaChart</a></span>(java.lang.String&nbsp;title,
  749. java.lang.String&nbsp;xAxisLabel,
  750. java.lang.String&nbsp;yAxisLabel,
  751. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  752. <div class="block">Creates a filled stepped XY plot with default settings.</div>
  753. </td>
  754. </tr>
  755. <tr id="i55" class="rowColor">
  756. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  757. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYStepAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createXYStepAreaChart</a></span>(java.lang.String&nbsp;title,
  758. java.lang.String&nbsp;xAxisLabel,
  759. java.lang.String&nbsp;yAxisLabel,
  760. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  761. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  762. boolean&nbsp;legend,
  763. boolean&nbsp;tooltips,
  764. boolean&nbsp;urls)</code>
  765. <div class="block">Creates a filled stepped XY plot with default settings.</div>
  766. </td>
  767. </tr>
  768. <tr id="i56" class="altColor">
  769. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  770. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYStepChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">createXYStepChart</a></span>(java.lang.String&nbsp;title,
  771. java.lang.String&nbsp;xAxisLabel,
  772. java.lang.String&nbsp;yAxisLabel,
  773. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  774. <div class="block">Creates a stepped XY plot with default settings.</div>
  775. </td>
  776. </tr>
  777. <tr id="i57" class="rowColor">
  778. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a></code></td>
  779. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#createXYStepChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">createXYStepChart</a></span>(java.lang.String&nbsp;title,
  780. java.lang.String&nbsp;xAxisLabel,
  781. java.lang.String&nbsp;yAxisLabel,
  782. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  783. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  784. boolean&nbsp;legend,
  785. boolean&nbsp;tooltips,
  786. boolean&nbsp;urls)</code>
  787. <div class="block">Creates a stepped XY plot with default settings.</div>
  788. </td>
  789. </tr>
  790. <tr id="i58" class="altColor">
  791. <td class="colFirst"><code>static <a href="../../../org/jfree/chart/ChartTheme.html" title="interface in org.jfree.chart">ChartTheme</a></code></td>
  792. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#getChartTheme--">getChartTheme</a></span>()</code>
  793. <div class="block">Returns the current chart theme used by the factory.</div>
  794. </td>
  795. </tr>
  796. <tr id="i59" class="rowColor">
  797. <td class="colFirst"><code>static void</code></td>
  798. <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/jfree/chart/ChartFactory.html#setChartTheme-org.jfree.chart.ChartTheme-">setChartTheme</a></span>(<a href="../../../org/jfree/chart/ChartTheme.html" title="interface in org.jfree.chart">ChartTheme</a>&nbsp;theme)</code>
  799. <div class="block">Sets the current chart theme.</div>
  800. </td>
  801. </tr>
  802. </table>
  803. <ul class="blockList">
  804. <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
  805. <!-- -->
  806. </a>
  807. <h3>Methods inherited from class&nbsp;java.lang.Object</h3>
  808. <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
  809. </ul>
  810. </li>
  811. </ul>
  812. </li>
  813. </ul>
  814. </div>
  815. <div class="details">
  816. <ul class="blockList">
  817. <li class="blockList">
  818. <!-- ========= CONSTRUCTOR DETAIL ======== -->
  819. <ul class="blockList">
  820. <li class="blockList"><a name="constructor.detail">
  821. <!-- -->
  822. </a>
  823. <h3>Constructor Detail</h3>
  824. <a name="ChartFactory--">
  825. <!-- -->
  826. </a>
  827. <ul class="blockListLast">
  828. <li class="blockList">
  829. <h4>ChartFactory</h4>
  830. <pre>public&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.228">ChartFactory</a>()</pre>
  831. </li>
  832. </ul>
  833. </li>
  834. </ul>
  835. <!-- ============ METHOD DETAIL ========== -->
  836. <ul class="blockList">
  837. <li class="blockList"><a name="method.detail">
  838. <!-- -->
  839. </a>
  840. <h3>Method Detail</h3>
  841. <a name="getChartTheme--">
  842. <!-- -->
  843. </a>
  844. <ul class="blockList">
  845. <li class="blockList">
  846. <h4>getChartTheme</h4>
  847. <pre>public static&nbsp;<a href="../../../org/jfree/chart/ChartTheme.html" title="interface in org.jfree.chart">ChartTheme</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.243">getChartTheme</a>()</pre>
  848. <div class="block">Returns the current chart theme used by the factory.</div>
  849. <dl>
  850. <dt><span class="returnLabel">Returns:</span></dt>
  851. <dd>The chart theme.</dd>
  852. <dt><span class="simpleTagLabel">Since:</span></dt>
  853. <dd>1.0.11</dd>
  854. <dt><span class="seeLabel">See Also:</span></dt>
  855. <dd><a href="../../../org/jfree/chart/ChartFactory.html#setChartTheme-org.jfree.chart.ChartTheme-"><code>setChartTheme(ChartTheme)</code></a>,
  856. <a href="../../../org/jfree/chart/ChartUtilities.html#applyCurrentTheme-org.jfree.chart.JFreeChart-"><code>ChartUtilities.applyCurrentTheme(JFreeChart)</code></a></dd>
  857. </dl>
  858. </li>
  859. </ul>
  860. <a name="setChartTheme-org.jfree.chart.ChartTheme-">
  861. <!-- -->
  862. </a>
  863. <ul class="blockList">
  864. <li class="blockList">
  865. <h4>setChartTheme</h4>
  866. <pre>public static&nbsp;void&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.258">setChartTheme</a>(<a href="../../../org/jfree/chart/ChartTheme.html" title="interface in org.jfree.chart">ChartTheme</a>&nbsp;theme)</pre>
  867. <div class="block">Sets the current chart theme. This will be applied to all new charts
  868. created via methods in this class.</div>
  869. <dl>
  870. <dt><span class="paramLabel">Parameters:</span></dt>
  871. <dd><code>theme</code> - the theme (<code>null</code> not permitted).</dd>
  872. <dt><span class="simpleTagLabel">Since:</span></dt>
  873. <dd>1.0.11</dd>
  874. <dt><span class="seeLabel">See Also:</span></dt>
  875. <dd><a href="../../../org/jfree/chart/ChartFactory.html#getChartTheme--"><code>getChartTheme()</code></a>,
  876. <a href="../../../org/jfree/chart/ChartUtilities.html#applyCurrentTheme-org.jfree.chart.JFreeChart-"><code>ChartUtilities.applyCurrentTheme(JFreeChart)</code></a></dd>
  877. </dl>
  878. </li>
  879. </ul>
  880. <a name="createPieChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">
  881. <!-- -->
  882. </a>
  883. <ul class="blockList">
  884. <li class="blockList">
  885. <h4>createPieChart</h4>
  886. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.293">createPieChart</a>(java.lang.String&nbsp;title,
  887. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  888. boolean&nbsp;legend,
  889. boolean&nbsp;tooltips,
  890. java.util.Locale&nbsp;locale)</pre>
  891. <div class="block">Creates a pie chart with default settings.
  892. <P>
  893. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot.html" title="class in org.jfree.chart.plot"><code>PiePlot</code></a> instance
  894. as the plot.</div>
  895. <dl>
  896. <dt><span class="paramLabel">Parameters:</span></dt>
  897. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  898. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  899. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  900. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  901. <dd><code>locale</code> - the locale (<code>null</code> not permitted).</dd>
  902. <dt><span class="returnLabel">Returns:</span></dt>
  903. <dd>A pie chart.</dd>
  904. <dt><span class="simpleTagLabel">Since:</span></dt>
  905. <dd>1.0.7</dd>
  906. </dl>
  907. </li>
  908. </ul>
  909. <a name="createPieChart-java.lang.String-org.jfree.data.general.PieDataset-">
  910. <!-- -->
  911. </a>
  912. <ul class="blockList">
  913. <li class="blockList">
  914. <h4>createPieChart</h4>
  915. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.322">createPieChart</a>(java.lang.String&nbsp;title,
  916. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset)</pre>
  917. <div class="block">Creates a pie chart with default settings.
  918. <P>
  919. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot.html" title="class in org.jfree.chart.plot"><code>PiePlot</code></a> instance
  920. as the plot.</div>
  921. <dl>
  922. <dt><span class="paramLabel">Parameters:</span></dt>
  923. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  924. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  925. <dt><span class="returnLabel">Returns:</span></dt>
  926. <dd>A pie chart.</dd>
  927. <dt><span class="simpleTagLabel">Since:</span></dt>
  928. <dd>1.0.16</dd>
  929. </dl>
  930. </li>
  931. </ul>
  932. <a name="createPieChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">
  933. <!-- -->
  934. </a>
  935. <ul class="blockList">
  936. <li class="blockList">
  937. <h4>createPieChart</h4>
  938. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.340">createPieChart</a>(java.lang.String&nbsp;title,
  939. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  940. boolean&nbsp;legend,
  941. boolean&nbsp;tooltips,
  942. boolean&nbsp;urls)</pre>
  943. <div class="block">Creates a pie chart with default settings.
  944. <P>
  945. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot.html" title="class in org.jfree.chart.plot"><code>PiePlot</code></a> instance
  946. as the plot.</div>
  947. <dl>
  948. <dt><span class="paramLabel">Parameters:</span></dt>
  949. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  950. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  951. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  952. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  953. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  954. <dt><span class="returnLabel">Returns:</span></dt>
  955. <dd>A pie chart.</dd>
  956. </dl>
  957. </li>
  958. </ul>
  959. <a name="createPieChart-java.lang.String-org.jfree.data.general.PieDataset-org.jfree.data.general.PieDataset-int-boolean-boolean-boolean-java.util.Locale-boolean-boolean-">
  960. <!-- -->
  961. </a>
  962. <ul class="blockList">
  963. <li class="blockList">
  964. <h4>createPieChart</h4>
  965. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.398">createPieChart</a>(java.lang.String&nbsp;title,
  966. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  967. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;previousDataset,
  968. int&nbsp;percentDiffForMaxScale,
  969. boolean&nbsp;greenForIncrease,
  970. boolean&nbsp;legend,
  971. boolean&nbsp;tooltips,
  972. java.util.Locale&nbsp;locale,
  973. boolean&nbsp;subTitle,
  974. boolean&nbsp;showDifference)</pre>
  975. <div class="block">Creates a pie chart with default settings that compares 2 datasets.
  976. The colour of each section will be determined by the move from the value
  977. for the same key in <code>previousDataset</code>. ie if value1 &gt;
  978. value2 then the section will be in green (unless
  979. <code>greenForIncrease</code> is <code>false</code>, in which case it
  980. would be <code>red</code>). Each section can have a shade of red or
  981. green as the difference can be tailored between 0% (black) and
  982. percentDiffForMaxScale% (bright red/green).
  983. <p>
  984. For instance if <code>percentDiffForMaxScale</code> is 10 (10%), a
  985. difference of 5% will have a half shade of red/green, a difference of
  986. 10% or more will have a maximum shade/brightness of red/green.
  987. <P>
  988. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot.html" title="class in org.jfree.chart.plot"><code>PiePlot</code></a> instance
  989. as the plot.
  990. <p>
  991. Written by <a href="mailto:opensource@objectlab.co.uk">Benoit
  992. Xhenseval</a>.</div>
  993. <dl>
  994. <dt><span class="paramLabel">Parameters:</span></dt>
  995. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  996. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  997. <dd><code>previousDataset</code> - the dataset for the last run, this will be used
  998. to compare each key in the dataset</dd>
  999. <dd><code>percentDiffForMaxScale</code> - scale goes from bright red/green to black,
  1000. percentDiffForMaxScale indicate the change
  1001. required to reach top scale.</dd>
  1002. <dd><code>greenForIncrease</code> - an increase since previousDataset will be
  1003. displayed in green (decrease red) if true.</dd>
  1004. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1005. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1006. <dd><code>locale</code> - the locale (<code>null</code> not permitted).</dd>
  1007. <dd><code>subTitle</code> - displays a subtitle with colour scheme if true</dd>
  1008. <dd><code>showDifference</code> - create a new dataset that will show the %
  1009. difference between the two datasets.</dd>
  1010. <dt><span class="returnLabel">Returns:</span></dt>
  1011. <dd>A pie chart.</dd>
  1012. <dt><span class="simpleTagLabel">Since:</span></dt>
  1013. <dd>1.0.7</dd>
  1014. </dl>
  1015. </li>
  1016. </ul>
  1017. <a name="createPieChart-java.lang.String-org.jfree.data.general.PieDataset-org.jfree.data.general.PieDataset-int-boolean-boolean-boolean-boolean-boolean-boolean-">
  1018. <!-- -->
  1019. </a>
  1020. <ul class="blockList">
  1021. <li class="blockList">
  1022. <h4>createPieChart</h4>
  1023. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.516">createPieChart</a>(java.lang.String&nbsp;title,
  1024. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  1025. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;previousDataset,
  1026. int&nbsp;percentDiffForMaxScale,
  1027. boolean&nbsp;greenForIncrease,
  1028. boolean&nbsp;legend,
  1029. boolean&nbsp;tooltips,
  1030. boolean&nbsp;urls,
  1031. boolean&nbsp;subTitle,
  1032. boolean&nbsp;showDifference)</pre>
  1033. <div class="block">Creates a pie chart with default settings that compares 2 datasets.
  1034. The colour of each section will be determined by the move from the value
  1035. for the same key in <code>previousDataset</code>. ie if value1 &gt;
  1036. value2 then the section will be in green (unless
  1037. <code>greenForIncrease</code> is <code>false</code>, in which case it
  1038. would be <code>red</code>). Each section can have a shade of red or
  1039. green as the difference can be tailored between 0% (black) and
  1040. percentDiffForMaxScale% (bright red/green).
  1041. <p>
  1042. For instance if <code>percentDiffForMaxScale</code> is 10 (10%), a
  1043. difference of 5% will have a half shade of red/green, a difference of
  1044. 10% or more will have a maximum shade/brightness of red/green.
  1045. <P>
  1046. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot.html" title="class in org.jfree.chart.plot"><code>PiePlot</code></a> instance
  1047. as the plot.
  1048. <p>
  1049. Written by <a href="mailto:opensource@objectlab.co.uk">Benoit
  1050. Xhenseval</a>.</div>
  1051. <dl>
  1052. <dt><span class="paramLabel">Parameters:</span></dt>
  1053. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1054. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1055. <dd><code>previousDataset</code> - the dataset for the last run, this will be used
  1056. to compare each key in the dataset</dd>
  1057. <dd><code>percentDiffForMaxScale</code> - scale goes from bright red/green to black,
  1058. percentDiffForMaxScale indicate the change
  1059. required to reach top scale.</dd>
  1060. <dd><code>greenForIncrease</code> - an increase since previousDataset will be
  1061. displayed in green (decrease red) if true.</dd>
  1062. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1063. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1064. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1065. <dd><code>subTitle</code> - displays a subtitle with colour scheme if true</dd>
  1066. <dd><code>showDifference</code> - create a new dataset that will show the %
  1067. difference between the two datasets.</dd>
  1068. <dt><span class="returnLabel">Returns:</span></dt>
  1069. <dd>A pie chart.</dd>
  1070. </dl>
  1071. </li>
  1072. </ul>
  1073. <a name="createRingChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">
  1074. <!-- -->
  1075. </a>
  1076. <ul class="blockList">
  1077. <li class="blockList">
  1078. <h4>createRingChart</h4>
  1079. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.615">createRingChart</a>(java.lang.String&nbsp;title,
  1080. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  1081. boolean&nbsp;legend,
  1082. boolean&nbsp;tooltips,
  1083. java.util.Locale&nbsp;locale)</pre>
  1084. <div class="block">Creates a ring chart with default settings.
  1085. <P>
  1086. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/RingPlot.html" title="class in org.jfree.chart.plot"><code>RingPlot</code></a>
  1087. instance as the plot.</div>
  1088. <dl>
  1089. <dt><span class="paramLabel">Parameters:</span></dt>
  1090. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1091. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1092. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1093. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1094. <dd><code>locale</code> - the locale (<code>null</code> not permitted).</dd>
  1095. <dt><span class="returnLabel">Returns:</span></dt>
  1096. <dd>A ring chart.</dd>
  1097. <dt><span class="simpleTagLabel">Since:</span></dt>
  1098. <dd>1.0.7</dd>
  1099. </dl>
  1100. </li>
  1101. </ul>
  1102. <a name="createRingChart-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">
  1103. <!-- -->
  1104. </a>
  1105. <ul class="blockList">
  1106. <li class="blockList">
  1107. <h4>createRingChart</h4>
  1108. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.644">createRingChart</a>(java.lang.String&nbsp;title,
  1109. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  1110. boolean&nbsp;legend,
  1111. boolean&nbsp;tooltips,
  1112. boolean&nbsp;urls)</pre>
  1113. <div class="block">Creates a ring chart with default settings.
  1114. <P>
  1115. The chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/RingPlot.html" title="class in org.jfree.chart.plot"><code>RingPlot</code></a>
  1116. instance as the plot.</div>
  1117. <dl>
  1118. <dt><span class="paramLabel">Parameters:</span></dt>
  1119. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1120. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1121. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1122. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1123. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1124. <dt><span class="returnLabel">Returns:</span></dt>
  1125. <dd>A ring chart.</dd>
  1126. </dl>
  1127. </li>
  1128. </ul>
  1129. <a name="createMultiplePieChart-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.util.TableOrder-boolean-boolean-boolean-">
  1130. <!-- -->
  1131. </a>
  1132. <ul class="blockList">
  1133. <li class="blockList">
  1134. <h4>createMultiplePieChart</h4>
  1135. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.678">createMultiplePieChart</a>(java.lang.String&nbsp;title,
  1136. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1137. org.jfree.util.TableOrder&nbsp;order,
  1138. boolean&nbsp;legend,
  1139. boolean&nbsp;tooltips,
  1140. boolean&nbsp;urls)</pre>
  1141. <div class="block">Creates a chart that displays multiple pie plots. The chart object
  1142. returned by this method uses a <a href="../../../org/jfree/chart/plot/MultiplePiePlot.html" title="class in org.jfree.chart.plot"><code>MultiplePiePlot</code></a> instance as the
  1143. plot.</div>
  1144. <dl>
  1145. <dt><span class="paramLabel">Parameters:</span></dt>
  1146. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1147. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  1148. <dd><code>order</code> - the order that the data is extracted (by row or by column)
  1149. (<code>null</code> not permitted).</dd>
  1150. <dd><code>legend</code> - include a legend?</dd>
  1151. <dd><code>tooltips</code> - generate tooltips?</dd>
  1152. <dd><code>urls</code> - generate URLs?</dd>
  1153. <dt><span class="returnLabel">Returns:</span></dt>
  1154. <dd>A chart.</dd>
  1155. </dl>
  1156. </li>
  1157. </ul>
  1158. <a name="createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-java.util.Locale-">
  1159. <!-- -->
  1160. </a>
  1161. <ul class="blockList">
  1162. <li class="blockList">
  1163. <h4>createPieChart3D</h4>
  1164. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.723">createPieChart3D</a>(java.lang.String&nbsp;title,
  1165. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  1166. boolean&nbsp;legend,
  1167. boolean&nbsp;tooltips,
  1168. java.util.Locale&nbsp;locale)</pre>
  1169. <div class="block">Creates a 3D pie chart using the specified dataset. The chart object
  1170. returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot3D.html" title="class in org.jfree.chart.plot"><code>PiePlot3D</code></a> instance as the
  1171. plot.</div>
  1172. <dl>
  1173. <dt><span class="paramLabel">Parameters:</span></dt>
  1174. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1175. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1176. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1177. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1178. <dd><code>locale</code> - the locale (<code>null</code> not permitted).</dd>
  1179. <dt><span class="returnLabel">Returns:</span></dt>
  1180. <dd>A pie chart.</dd>
  1181. <dt><span class="simpleTagLabel">Since:</span></dt>
  1182. <dd>1.0.7</dd>
  1183. </dl>
  1184. </li>
  1185. </ul>
  1186. <a name="createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-">
  1187. <!-- -->
  1188. </a>
  1189. <ul class="blockList">
  1190. <li class="blockList">
  1191. <h4>createPieChart3D</h4>
  1192. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.751">createPieChart3D</a>(java.lang.String&nbsp;title,
  1193. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset)</pre>
  1194. <div class="block">Creates a 3D pie chart using the specified dataset. The chart object
  1195. returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot3D.html" title="class in org.jfree.chart.plot"><code>PiePlot3D</code></a> instance as the
  1196. plot.</div>
  1197. <dl>
  1198. <dt><span class="paramLabel">Parameters:</span></dt>
  1199. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1200. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1201. <dt><span class="returnLabel">Returns:</span></dt>
  1202. <dd>A pie chart.</dd>
  1203. <dt><span class="simpleTagLabel">Since:</span></dt>
  1204. <dd>1.0.16</dd>
  1205. </dl>
  1206. </li>
  1207. </ul>
  1208. <a name="createPieChart3D-java.lang.String-org.jfree.data.general.PieDataset-boolean-boolean-boolean-">
  1209. <!-- -->
  1210. </a>
  1211. <ul class="blockList">
  1212. <li class="blockList">
  1213. <h4>createPieChart3D</h4>
  1214. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.769">createPieChart3D</a>(java.lang.String&nbsp;title,
  1215. <a href="../../../org/jfree/data/general/PieDataset.html" title="interface in org.jfree.data.general">PieDataset</a>&nbsp;dataset,
  1216. boolean&nbsp;legend,
  1217. boolean&nbsp;tooltips,
  1218. boolean&nbsp;urls)</pre>
  1219. <div class="block">Creates a 3D pie chart using the specified dataset. The chart object
  1220. returned by this method uses a <a href="../../../org/jfree/chart/plot/PiePlot3D.html" title="class in org.jfree.chart.plot"><code>PiePlot3D</code></a> instance as the
  1221. plot.</div>
  1222. <dl>
  1223. <dt><span class="paramLabel">Parameters:</span></dt>
  1224. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1225. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1226. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1227. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1228. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1229. <dt><span class="returnLabel">Returns:</span></dt>
  1230. <dd>A pie chart.</dd>
  1231. </dl>
  1232. </li>
  1233. </ul>
  1234. <a name="createMultiplePieChart3D-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.util.TableOrder-boolean-boolean-boolean-">
  1235. <!-- -->
  1236. </a>
  1237. <ul class="blockList">
  1238. <li class="blockList">
  1239. <h4>createMultiplePieChart3D</h4>
  1240. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.802">createMultiplePieChart3D</a>(java.lang.String&nbsp;title,
  1241. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1242. org.jfree.util.TableOrder&nbsp;order,
  1243. boolean&nbsp;legend,
  1244. boolean&nbsp;tooltips,
  1245. boolean&nbsp;urls)</pre>
  1246. <div class="block">Creates a chart that displays multiple pie plots. The chart object
  1247. returned by this method uses a <a href="../../../org/jfree/chart/plot/MultiplePiePlot.html" title="class in org.jfree.chart.plot"><code>MultiplePiePlot</code></a> instance as the
  1248. plot.</div>
  1249. <dl>
  1250. <dt><span class="paramLabel">Parameters:</span></dt>
  1251. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1252. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  1253. <dd><code>order</code> - the order that the data is extracted (by row or by column)
  1254. (<code>null</code> not permitted).</dd>
  1255. <dd><code>legend</code> - include a legend?</dd>
  1256. <dd><code>tooltips</code> - generate tooltips?</dd>
  1257. <dd><code>urls</code> - generate URLs?</dd>
  1258. <dt><span class="returnLabel">Returns:</span></dt>
  1259. <dd>A chart.</dd>
  1260. </dl>
  1261. </li>
  1262. </ul>
  1263. <a name="createBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1264. <!-- -->
  1265. </a>
  1266. <ul class="blockList">
  1267. <li class="blockList">
  1268. <h4>createBarChart</h4>
  1269. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.859">createBarChart</a>(java.lang.String&nbsp;title,
  1270. java.lang.String&nbsp;categoryAxisLabel,
  1271. java.lang.String&nbsp;valueAxisLabel,
  1272. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1273. <div class="block">Creates a bar chart with a vertical orientation. The chart object
  1274. returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the
  1275. plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a
  1276. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/category/BarRenderer.html" title="class in org.jfree.chart.renderer.category"><code>BarRenderer</code></a> as the
  1277. renderer.</div>
  1278. <dl>
  1279. <dt><span class="paramLabel">Parameters:</span></dt>
  1280. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1281. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1282. (<code>null</code> permitted).</dd>
  1283. <dd><code>valueAxisLabel</code> - the label for the value axis
  1284. (<code>null</code> permitted).</dd>
  1285. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1286. <dt><span class="returnLabel">Returns:</span></dt>
  1287. <dd>A bar chart.</dd>
  1288. <dt><span class="simpleTagLabel">Since:</span></dt>
  1289. <dd>1.0.16</dd>
  1290. </dl>
  1291. </li>
  1292. </ul>
  1293. <a name="createBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1294. <!-- -->
  1295. </a>
  1296. <ul class="blockList">
  1297. <li class="blockList">
  1298. <h4>createBarChart</h4>
  1299. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.886">createBarChart</a>(java.lang.String&nbsp;title,
  1300. java.lang.String&nbsp;categoryAxisLabel,
  1301. java.lang.String&nbsp;valueAxisLabel,
  1302. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1303. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1304. boolean&nbsp;legend,
  1305. boolean&nbsp;tooltips,
  1306. boolean&nbsp;urls)</pre>
  1307. <div class="block">Creates a bar chart. The chart object returned by this method uses a
  1308. <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a>
  1309. for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a
  1310. <a href="../../../org/jfree/chart/renderer/category/BarRenderer.html" title="class in org.jfree.chart.renderer.category"><code>BarRenderer</code></a> as the renderer.</div>
  1311. <dl>
  1312. <dt><span class="paramLabel">Parameters:</span></dt>
  1313. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1314. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1315. (<code>null</code> permitted).</dd>
  1316. <dd><code>valueAxisLabel</code> - the label for the value axis
  1317. (<code>null</code> permitted).</dd>
  1318. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1319. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  1320. (<code>null</code> not permitted).</dd>
  1321. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1322. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1323. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1324. <dt><span class="returnLabel">Returns:</span></dt>
  1325. <dd>A bar chart.</dd>
  1326. </dl>
  1327. </li>
  1328. </ul>
  1329. <a name="createStackedBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1330. <!-- -->
  1331. </a>
  1332. <ul class="blockList">
  1333. <li class="blockList">
  1334. <h4>createStackedBarChart</h4>
  1335. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.948">createStackedBarChart</a>(java.lang.String&nbsp;title,
  1336. java.lang.String&nbsp;domainAxisLabel,
  1337. java.lang.String&nbsp;rangeAxisLabel,
  1338. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1339. <div class="block">Creates a stacked bar chart with default settings. The chart object
  1340. returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the
  1341. plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a
  1342. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/category/StackedBarRenderer.html" title="class in org.jfree.chart.renderer.category"><code>StackedBarRenderer</code></a>
  1343. as the renderer.</div>
  1344. <dl>
  1345. <dt><span class="paramLabel">Parameters:</span></dt>
  1346. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1347. <dd><code>domainAxisLabel</code> - the label for the category axis
  1348. (<code>null</code> permitted).</dd>
  1349. <dd><code>rangeAxisLabel</code> - the label for the value axis
  1350. (<code>null</code> permitted).</dd>
  1351. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1352. <dt><span class="returnLabel">Returns:</span></dt>
  1353. <dd>A stacked bar chart.</dd>
  1354. <dt><span class="simpleTagLabel">Since:</span></dt>
  1355. <dd>1.0.16</dd>
  1356. </dl>
  1357. </li>
  1358. </ul>
  1359. <a name="createStackedBarChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1360. <!-- -->
  1361. </a>
  1362. <ul class="blockList">
  1363. <li class="blockList">
  1364. <h4>createStackedBarChart</h4>
  1365. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.976">createStackedBarChart</a>(java.lang.String&nbsp;title,
  1366. java.lang.String&nbsp;domainAxisLabel,
  1367. java.lang.String&nbsp;rangeAxisLabel,
  1368. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1369. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1370. boolean&nbsp;legend,
  1371. boolean&nbsp;tooltips,
  1372. boolean&nbsp;urls)</pre>
  1373. <div class="block">Creates a stacked bar chart with default settings. The chart object
  1374. returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the
  1375. plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a
  1376. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/category/StackedBarRenderer.html" title="class in org.jfree.chart.renderer.category"><code>StackedBarRenderer</code></a>
  1377. as the renderer.</div>
  1378. <dl>
  1379. <dt><span class="paramLabel">Parameters:</span></dt>
  1380. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1381. <dd><code>domainAxisLabel</code> - the label for the category axis
  1382. (<code>null</code> permitted).</dd>
  1383. <dd><code>rangeAxisLabel</code> - the label for the value axis
  1384. (<code>null</code> permitted).</dd>
  1385. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1386. <dd><code>orientation</code> - the orientation of the chart (horizontal or
  1387. vertical) (<code>null</code> not permitted).</dd>
  1388. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1389. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1390. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1391. <dt><span class="returnLabel">Returns:</span></dt>
  1392. <dd>A stacked bar chart.</dd>
  1393. </dl>
  1394. </li>
  1395. </ul>
  1396. <a name="createBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1397. <!-- -->
  1398. </a>
  1399. <ul class="blockList">
  1400. <li class="blockList">
  1401. <h4>createBarChart3D</h4>
  1402. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1023">createBarChart3D</a>(java.lang.String&nbsp;title,
  1403. java.lang.String&nbsp;categoryAxisLabel,
  1404. java.lang.String&nbsp;valueAxisLabel,
  1405. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1406. <div class="block">Creates a bar chart with a 3D effect. The chart object returned by this
  1407. method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1408. <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as
  1409. the range axis, and a <a href="../../../org/jfree/chart/renderer/category/BarRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>BarRenderer3D</code></a> as the renderer.</div>
  1410. <dl>
  1411. <dt><span class="paramLabel">Parameters:</span></dt>
  1412. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1413. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1414. (<code>null</code> permitted).</dd>
  1415. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1416. permitted).</dd>
  1417. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1418. <dt><span class="returnLabel">Returns:</span></dt>
  1419. <dd>A bar chart with a 3D effect.</dd>
  1420. <dt><span class="simpleTagLabel">Since:</span></dt>
  1421. <dd>1.0.16</dd>
  1422. </dl>
  1423. </li>
  1424. </ul>
  1425. <a name="createBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1426. <!-- -->
  1427. </a>
  1428. <ul class="blockList">
  1429. <li class="blockList">
  1430. <h4>createBarChart3D</h4>
  1431. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1050">createBarChart3D</a>(java.lang.String&nbsp;title,
  1432. java.lang.String&nbsp;categoryAxisLabel,
  1433. java.lang.String&nbsp;valueAxisLabel,
  1434. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1435. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1436. boolean&nbsp;legend,
  1437. boolean&nbsp;tooltips,
  1438. boolean&nbsp;urls)</pre>
  1439. <div class="block">Creates a bar chart with a 3D effect. The chart object returned by this
  1440. method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1441. <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as
  1442. the range axis, and a <a href="../../../org/jfree/chart/renderer/category/BarRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>BarRenderer3D</code></a> as the renderer.</div>
  1443. <dl>
  1444. <dt><span class="paramLabel">Parameters:</span></dt>
  1445. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1446. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1447. (<code>null</code> permitted).</dd>
  1448. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1449. permitted).</dd>
  1450. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1451. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  1452. (<code>null</code> not permitted).</dd>
  1453. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1454. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1455. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1456. <dt><span class="returnLabel">Returns:</span></dt>
  1457. <dd>A bar chart with a 3D effect.</dd>
  1458. </dl>
  1459. </li>
  1460. </ul>
  1461. <a name="createStackedBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1462. <!-- -->
  1463. </a>
  1464. <ul class="blockList">
  1465. <li class="blockList">
  1466. <h4>createStackedBarChart3D</h4>
  1467. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1105">createStackedBarChart3D</a>(java.lang.String&nbsp;title,
  1468. java.lang.String&nbsp;categoryAxisLabel,
  1469. java.lang.String&nbsp;valueAxisLabel,
  1470. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1471. <div class="block">Creates a stacked bar chart with a 3D effect and default settings. The
  1472. chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a>
  1473. instance as the plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis,
  1474. a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as the range axis, and a
  1475. <a href="../../../org/jfree/chart/renderer/category/StackedBarRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>StackedBarRenderer3D</code></a> as the renderer.</div>
  1476. <dl>
  1477. <dt><span class="paramLabel">Parameters:</span></dt>
  1478. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1479. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1480. (<code>null</code> permitted).</dd>
  1481. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1482. permitted).</dd>
  1483. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1484. <dt><span class="returnLabel">Returns:</span></dt>
  1485. <dd>A stacked bar chart with a 3D effect.</dd>
  1486. <dt><span class="simpleTagLabel">Since:</span></dt>
  1487. <dd>1.0.16</dd>
  1488. </dl>
  1489. </li>
  1490. </ul>
  1491. <a name="createStackedBarChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1492. <!-- -->
  1493. </a>
  1494. <ul class="blockList">
  1495. <li class="blockList">
  1496. <h4>createStackedBarChart3D</h4>
  1497. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1133">createStackedBarChart3D</a>(java.lang.String&nbsp;title,
  1498. java.lang.String&nbsp;categoryAxisLabel,
  1499. java.lang.String&nbsp;valueAxisLabel,
  1500. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1501. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1502. boolean&nbsp;legend,
  1503. boolean&nbsp;tooltips,
  1504. boolean&nbsp;urls)</pre>
  1505. <div class="block">Creates a stacked bar chart with a 3D effect and default settings. The
  1506. chart object returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a>
  1507. instance as the plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis,
  1508. a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as the range axis, and a
  1509. <a href="../../../org/jfree/chart/renderer/category/StackedBarRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>StackedBarRenderer3D</code></a> as the renderer.</div>
  1510. <dl>
  1511. <dt><span class="paramLabel">Parameters:</span></dt>
  1512. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1513. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1514. (<code>null</code> permitted).</dd>
  1515. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1516. permitted).</dd>
  1517. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1518. <dd><code>orientation</code> - the orientation (horizontal or vertical)
  1519. (<code>null</code> not permitted).</dd>
  1520. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1521. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1522. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1523. <dt><span class="returnLabel">Returns:</span></dt>
  1524. <dd>A stacked bar chart with a 3D effect.</dd>
  1525. </dl>
  1526. </li>
  1527. </ul>
  1528. <a name="createAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1529. <!-- -->
  1530. </a>
  1531. <ul class="blockList">
  1532. <li class="blockList">
  1533. <h4>createAreaChart</h4>
  1534. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1188">createAreaChart</a>(java.lang.String&nbsp;title,
  1535. java.lang.String&nbsp;categoryAxisLabel,
  1536. java.lang.String&nbsp;valueAxisLabel,
  1537. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1538. <div class="block">Creates an area chart with default settings. The chart object returned
  1539. by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1540. <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  1541. range axis, and an <a href="../../../org/jfree/chart/renderer/category/AreaRenderer.html" title="class in org.jfree.chart.renderer.category"><code>AreaRenderer</code></a> as the renderer.</div>
  1542. <dl>
  1543. <dt><span class="paramLabel">Parameters:</span></dt>
  1544. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1545. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1546. (<code>null</code> permitted).</dd>
  1547. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1548. permitted).</dd>
  1549. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1550. <dt><span class="returnLabel">Returns:</span></dt>
  1551. <dd>An area chart.</dd>
  1552. <dt><span class="simpleTagLabel">Since:</span></dt>
  1553. <dd>1.0.16</dd>
  1554. </dl>
  1555. </li>
  1556. </ul>
  1557. <a name="createAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1558. <!-- -->
  1559. </a>
  1560. <ul class="blockList">
  1561. <li class="blockList">
  1562. <h4>createAreaChart</h4>
  1563. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1215">createAreaChart</a>(java.lang.String&nbsp;title,
  1564. java.lang.String&nbsp;categoryAxisLabel,
  1565. java.lang.String&nbsp;valueAxisLabel,
  1566. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1567. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1568. boolean&nbsp;legend,
  1569. boolean&nbsp;tooltips,
  1570. boolean&nbsp;urls)</pre>
  1571. <div class="block">Creates an area chart with default settings. The chart object returned
  1572. by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1573. <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  1574. range axis, and an <a href="../../../org/jfree/chart/renderer/category/AreaRenderer.html" title="class in org.jfree.chart.renderer.category"><code>AreaRenderer</code></a> as the renderer.</div>
  1575. <dl>
  1576. <dt><span class="paramLabel">Parameters:</span></dt>
  1577. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1578. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1579. (<code>null</code> permitted).</dd>
  1580. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1581. permitted).</dd>
  1582. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1583. <dd><code>orientation</code> - the plot orientation (<code>null</code> not
  1584. permitted).</dd>
  1585. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1586. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1587. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1588. <dt><span class="returnLabel">Returns:</span></dt>
  1589. <dd>An area chart.</dd>
  1590. </dl>
  1591. </li>
  1592. </ul>
  1593. <a name="createStackedAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1594. <!-- -->
  1595. </a>
  1596. <ul class="blockList">
  1597. <li class="blockList">
  1598. <h4>createStackedAreaChart</h4>
  1599. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1264">createStackedAreaChart</a>(java.lang.String&nbsp;title,
  1600. java.lang.String&nbsp;categoryAxisLabel,
  1601. java.lang.String&nbsp;valueAxisLabel,
  1602. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1603. <div class="block">Creates a stacked area chart with default settings. The chart object
  1604. returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the
  1605. plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a
  1606. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/category/StackedAreaRenderer.html" title="class in org.jfree.chart.renderer.category"><code>StackedAreaRenderer</code></a>
  1607. as the renderer.</div>
  1608. <dl>
  1609. <dt><span class="paramLabel">Parameters:</span></dt>
  1610. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1611. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1612. (<code>null</code> permitted).</dd>
  1613. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1614. permitted).</dd>
  1615. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1616. <dt><span class="returnLabel">Returns:</span></dt>
  1617. <dd>A stacked area chart.</dd>
  1618. <dt><span class="simpleTagLabel">Since:</span></dt>
  1619. <dd>1.0.16</dd>
  1620. </dl>
  1621. </li>
  1622. </ul>
  1623. <a name="createStackedAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1624. <!-- -->
  1625. </a>
  1626. <ul class="blockList">
  1627. <li class="blockList">
  1628. <h4>createStackedAreaChart</h4>
  1629. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1292">createStackedAreaChart</a>(java.lang.String&nbsp;title,
  1630. java.lang.String&nbsp;categoryAxisLabel,
  1631. java.lang.String&nbsp;valueAxisLabel,
  1632. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1633. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1634. boolean&nbsp;legend,
  1635. boolean&nbsp;tooltips,
  1636. boolean&nbsp;urls)</pre>
  1637. <div class="block">Creates a stacked area chart with default settings. The chart object
  1638. returned by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the
  1639. plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a
  1640. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/category/StackedAreaRenderer.html" title="class in org.jfree.chart.renderer.category"><code>StackedAreaRenderer</code></a>
  1641. as the renderer.</div>
  1642. <dl>
  1643. <dt><span class="paramLabel">Parameters:</span></dt>
  1644. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1645. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1646. (<code>null</code> permitted).</dd>
  1647. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1648. permitted).</dd>
  1649. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1650. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  1651. (<code>null</code> not permitted).</dd>
  1652. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1653. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1654. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1655. <dt><span class="returnLabel">Returns:</span></dt>
  1656. <dd>A stacked area chart.</dd>
  1657. </dl>
  1658. </li>
  1659. </ul>
  1660. <a name="createLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1661. <!-- -->
  1662. </a>
  1663. <ul class="blockList">
  1664. <li class="blockList">
  1665. <h4>createLineChart</h4>
  1666. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1339">createLineChart</a>(java.lang.String&nbsp;title,
  1667. java.lang.String&nbsp;categoryAxisLabel,
  1668. java.lang.String&nbsp;valueAxisLabel,
  1669. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1670. <div class="block">Creates a line chart with default settings. The chart object returned
  1671. by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1672. <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  1673. range axis, and a <a href="../../../org/jfree/chart/renderer/category/LineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.category"><code>LineAndShapeRenderer</code></a> as the renderer.</div>
  1674. <dl>
  1675. <dt><span class="paramLabel">Parameters:</span></dt>
  1676. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1677. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1678. (<code>null</code> permitted).</dd>
  1679. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1680. permitted).</dd>
  1681. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1682. <dt><span class="returnLabel">Returns:</span></dt>
  1683. <dd>A line chart.</dd>
  1684. <dt><span class="simpleTagLabel">Since:</span></dt>
  1685. <dd>1.0.16</dd>
  1686. </dl>
  1687. </li>
  1688. </ul>
  1689. <a name="createLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1690. <!-- -->
  1691. </a>
  1692. <ul class="blockList">
  1693. <li class="blockList">
  1694. <h4>createLineChart</h4>
  1695. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1366">createLineChart</a>(java.lang.String&nbsp;title,
  1696. java.lang.String&nbsp;categoryAxisLabel,
  1697. java.lang.String&nbsp;valueAxisLabel,
  1698. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1699. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1700. boolean&nbsp;legend,
  1701. boolean&nbsp;tooltips,
  1702. boolean&nbsp;urls)</pre>
  1703. <div class="block">Creates a line chart with default settings. The chart object returned
  1704. by this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1705. <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  1706. range axis, and a <a href="../../../org/jfree/chart/renderer/category/LineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.category"><code>LineAndShapeRenderer</code></a> as the renderer.</div>
  1707. <dl>
  1708. <dt><span class="paramLabel">Parameters:</span></dt>
  1709. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1710. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1711. (<code>null</code> permitted).</dd>
  1712. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1713. permitted).</dd>
  1714. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1715. <dd><code>orientation</code> - the chart orientation (horizontal or vertical)
  1716. (<code>null</code> not permitted).</dd>
  1717. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1718. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1719. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1720. <dt><span class="returnLabel">Returns:</span></dt>
  1721. <dd>A line chart.</dd>
  1722. </dl>
  1723. </li>
  1724. </ul>
  1725. <a name="createLineChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-">
  1726. <!-- -->
  1727. </a>
  1728. <ul class="blockList">
  1729. <li class="blockList">
  1730. <h4>createLineChart3D</h4>
  1731. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1411">createLineChart3D</a>(java.lang.String&nbsp;title,
  1732. java.lang.String&nbsp;categoryAxisLabel,
  1733. java.lang.String&nbsp;valueAxisLabel,
  1734. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset)</pre>
  1735. <div class="block">Creates a line chart with default settings. The chart object returned by
  1736. this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1737. <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as
  1738. the range axis, and a <a href="../../../org/jfree/chart/renderer/category/LineRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>LineRenderer3D</code></a> as the renderer.</div>
  1739. <dl>
  1740. <dt><span class="paramLabel">Parameters:</span></dt>
  1741. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1742. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1743. (<code>null</code> permitted).</dd>
  1744. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1745. permitted).</dd>
  1746. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1747. <dt><span class="returnLabel">Returns:</span></dt>
  1748. <dd>A line chart.</dd>
  1749. <dt><span class="simpleTagLabel">Since:</span></dt>
  1750. <dd>1.0.16</dd>
  1751. </dl>
  1752. </li>
  1753. </ul>
  1754. <a name="createLineChart3D-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1755. <!-- -->
  1756. </a>
  1757. <ul class="blockList">
  1758. <li class="blockList">
  1759. <h4>createLineChart3D</h4>
  1760. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1438">createLineChart3D</a>(java.lang.String&nbsp;title,
  1761. java.lang.String&nbsp;categoryAxisLabel,
  1762. java.lang.String&nbsp;valueAxisLabel,
  1763. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1764. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1765. boolean&nbsp;legend,
  1766. boolean&nbsp;tooltips,
  1767. boolean&nbsp;urls)</pre>
  1768. <div class="block">Creates a line chart with default settings. The chart object returned by
  1769. this method uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1770. <a href="../../../org/jfree/chart/axis/CategoryAxis3D.html" title="class in org.jfree.chart.axis"><code>CategoryAxis3D</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis3D.html" title="class in org.jfree.chart.axis"><code>NumberAxis3D</code></a> as
  1771. the range axis, and a <a href="../../../org/jfree/chart/renderer/category/LineRenderer3D.html" title="class in org.jfree.chart.renderer.category"><code>LineRenderer3D</code></a> as the renderer.</div>
  1772. <dl>
  1773. <dt><span class="paramLabel">Parameters:</span></dt>
  1774. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1775. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1776. (<code>null</code> permitted).</dd>
  1777. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1778. permitted).</dd>
  1779. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1780. <dd><code>orientation</code> - the chart orientation (horizontal or vertical)
  1781. (<code>null</code> not permitted).</dd>
  1782. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1783. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1784. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1785. <dt><span class="returnLabel">Returns:</span></dt>
  1786. <dd>A line chart.</dd>
  1787. </dl>
  1788. </li>
  1789. </ul>
  1790. <a name="createGanttChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.IntervalCategoryDataset-">
  1791. <!-- -->
  1792. </a>
  1793. <ul class="blockList">
  1794. <li class="blockList">
  1795. <h4>createGanttChart</h4>
  1796. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1484">createGanttChart</a>(java.lang.String&nbsp;title,
  1797. java.lang.String&nbsp;categoryAxisLabel,
  1798. java.lang.String&nbsp;dateAxisLabel,
  1799. <a href="../../../org/jfree/data/category/IntervalCategoryDataset.html" title="interface in org.jfree.data.category">IntervalCategoryDataset</a>&nbsp;dataset)</pre>
  1800. <div class="block">Creates a Gantt chart using the supplied attributes plus default values
  1801. where required. The chart object returned by this method uses a
  1802. <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a>
  1803. for the domain axis, a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> as the range axis, and a
  1804. <a href="../../../org/jfree/chart/renderer/category/GanttRenderer.html" title="class in org.jfree.chart.renderer.category"><code>GanttRenderer</code></a> as the renderer.</div>
  1805. <dl>
  1806. <dt><span class="paramLabel">Parameters:</span></dt>
  1807. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1808. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1809. (<code>null</code> permitted).</dd>
  1810. <dd><code>dateAxisLabel</code> - the label for the date axis
  1811. (<code>null</code> permitted).</dd>
  1812. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1813. <dt><span class="returnLabel">Returns:</span></dt>
  1814. <dd>A Gantt chart.</dd>
  1815. <dt><span class="simpleTagLabel">Since:</span></dt>
  1816. <dd>1.0.16</dd>
  1817. </dl>
  1818. </li>
  1819. </ul>
  1820. <a name="createGanttChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.IntervalCategoryDataset-boolean-boolean-boolean-">
  1821. <!-- -->
  1822. </a>
  1823. <ul class="blockList">
  1824. <li class="blockList">
  1825. <h4>createGanttChart</h4>
  1826. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1510">createGanttChart</a>(java.lang.String&nbsp;title,
  1827. java.lang.String&nbsp;categoryAxisLabel,
  1828. java.lang.String&nbsp;dateAxisLabel,
  1829. <a href="../../../org/jfree/data/category/IntervalCategoryDataset.html" title="interface in org.jfree.data.category">IntervalCategoryDataset</a>&nbsp;dataset,
  1830. boolean&nbsp;legend,
  1831. boolean&nbsp;tooltips,
  1832. boolean&nbsp;urls)</pre>
  1833. <div class="block">Creates a Gantt chart using the supplied attributes plus default values
  1834. where required. The chart object returned by this method uses a
  1835. <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a>
  1836. for the domain axis, a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> as the range axis, and a
  1837. <a href="../../../org/jfree/chart/renderer/category/GanttRenderer.html" title="class in org.jfree.chart.renderer.category"><code>GanttRenderer</code></a> as the renderer.</div>
  1838. <dl>
  1839. <dt><span class="paramLabel">Parameters:</span></dt>
  1840. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1841. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1842. (<code>null</code> permitted).</dd>
  1843. <dd><code>dateAxisLabel</code> - the label for the date axis
  1844. (<code>null</code> permitted).</dd>
  1845. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1846. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1847. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1848. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1849. <dt><span class="returnLabel">Returns:</span></dt>
  1850. <dd>A Gantt chart.</dd>
  1851. </dl>
  1852. </li>
  1853. </ul>
  1854. <a name="createWaterfallChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.category.CategoryDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1855. <!-- -->
  1856. </a>
  1857. <ul class="blockList">
  1858. <li class="blockList">
  1859. <h4>createWaterfallChart</h4>
  1860. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1559">createWaterfallChart</a>(java.lang.String&nbsp;title,
  1861. java.lang.String&nbsp;categoryAxisLabel,
  1862. java.lang.String&nbsp;valueAxisLabel,
  1863. <a href="../../../org/jfree/data/category/CategoryDataset.html" title="interface in org.jfree.data.category">CategoryDataset</a>&nbsp;dataset,
  1864. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1865. boolean&nbsp;legend,
  1866. boolean&nbsp;tooltips,
  1867. boolean&nbsp;urls)</pre>
  1868. <div class="block">Creates a waterfall chart. The chart object returned by this method
  1869. uses a <a href="../../../org/jfree/chart/plot/CategoryPlot.html" title="class in org.jfree.chart.plot"><code>CategoryPlot</code></a> instance as the plot, with a
  1870. <a href="../../../org/jfree/chart/axis/CategoryAxis.html" title="class in org.jfree.chart.axis"><code>CategoryAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  1871. range axis, and a <a href="../../../org/jfree/chart/renderer/category/WaterfallBarRenderer.html" title="class in org.jfree.chart.renderer.category"><code>WaterfallBarRenderer</code></a> as the renderer.</div>
  1872. <dl>
  1873. <dt><span class="paramLabel">Parameters:</span></dt>
  1874. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1875. <dd><code>categoryAxisLabel</code> - the label for the category axis
  1876. (<code>null</code> permitted).</dd>
  1877. <dd><code>valueAxisLabel</code> - the label for the value axis (<code>null</code>
  1878. permitted).</dd>
  1879. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1880. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  1881. (<code>null</code> NOT permitted).</dd>
  1882. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1883. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1884. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1885. <dt><span class="returnLabel">Returns:</span></dt>
  1886. <dd>A waterfall chart.</dd>
  1887. </dl>
  1888. </li>
  1889. </ul>
  1890. <a name="createPolarChart-java.lang.String-org.jfree.data.xy.XYDataset-boolean-boolean-boolean-">
  1891. <!-- -->
  1892. </a>
  1893. <ul class="blockList">
  1894. <li class="blockList">
  1895. <h4>createPolarChart</h4>
  1896. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1623">createPolarChart</a>(java.lang.String&nbsp;title,
  1897. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  1898. boolean&nbsp;legend,
  1899. boolean&nbsp;tooltips,
  1900. boolean&nbsp;urls)</pre>
  1901. <div class="block">Creates a polar plot for the specified dataset (x-values interpreted as
  1902. angles in degrees). The chart object returned by this method uses a
  1903. <a href="../../../org/jfree/chart/plot/PolarPlot.html" title="class in org.jfree.chart.plot"><code>PolarPlot</code></a> instance as the plot, with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for
  1904. the radial axis.</div>
  1905. <dl>
  1906. <dt><span class="paramLabel">Parameters:</span></dt>
  1907. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1908. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  1909. <dd><code>legend</code> - legend required?</dd>
  1910. <dd><code>tooltips</code> - tooltips required?</dd>
  1911. <dd><code>urls</code> - URLs required?</dd>
  1912. <dt><span class="returnLabel">Returns:</span></dt>
  1913. <dd>A chart.</dd>
  1914. </dl>
  1915. </li>
  1916. </ul>
  1917. <a name="createScatterPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  1918. <!-- -->
  1919. </a>
  1920. <ul class="blockList">
  1921. <li class="blockList">
  1922. <h4>createScatterPlot</h4>
  1923. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1657">createScatterPlot</a>(java.lang.String&nbsp;title,
  1924. java.lang.String&nbsp;xAxisLabel,
  1925. java.lang.String&nbsp;yAxisLabel,
  1926. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  1927. <div class="block">Creates a scatter plot with default settings. The chart object
  1928. returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance as the plot,
  1929. with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a>
  1930. as the range axis, and an <a href="../../../org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYLineAndShapeRenderer</code></a> as the
  1931. renderer.</div>
  1932. <dl>
  1933. <dt><span class="paramLabel">Parameters:</span></dt>
  1934. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1935. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  1936. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  1937. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1938. <dt><span class="returnLabel">Returns:</span></dt>
  1939. <dd>A scatter plot.</dd>
  1940. <dt><span class="simpleTagLabel">Since:</span></dt>
  1941. <dd>1.0.16</dd>
  1942. </dl>
  1943. </li>
  1944. </ul>
  1945. <a name="createScatterPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  1946. <!-- -->
  1947. </a>
  1948. <ul class="blockList">
  1949. <li class="blockList">
  1950. <h4>createScatterPlot</h4>
  1951. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1682">createScatterPlot</a>(java.lang.String&nbsp;title,
  1952. java.lang.String&nbsp;xAxisLabel,
  1953. java.lang.String&nbsp;yAxisLabel,
  1954. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  1955. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  1956. boolean&nbsp;legend,
  1957. boolean&nbsp;tooltips,
  1958. boolean&nbsp;urls)</pre>
  1959. <div class="block">Creates a scatter plot with default settings. The chart object
  1960. returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance as the plot,
  1961. with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a>
  1962. as the range axis, and an <a href="../../../org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYLineAndShapeRenderer</code></a> as the
  1963. renderer.</div>
  1964. <dl>
  1965. <dt><span class="paramLabel">Parameters:</span></dt>
  1966. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  1967. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  1968. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  1969. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  1970. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  1971. (<code>null</code> NOT permitted).</dd>
  1972. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  1973. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  1974. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  1975. <dt><span class="returnLabel">Returns:</span></dt>
  1976. <dd>A scatter plot.</dd>
  1977. </dl>
  1978. </li>
  1979. </ul>
  1980. <a name="createXYBarChart-java.lang.String-java.lang.String-boolean-java.lang.String-org.jfree.data.xy.IntervalXYDataset-">
  1981. <!-- -->
  1982. </a>
  1983. <ul class="blockList">
  1984. <li class="blockList">
  1985. <h4>createXYBarChart</h4>
  1986. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1734">createXYBarChart</a>(java.lang.String&nbsp;title,
  1987. java.lang.String&nbsp;xAxisLabel,
  1988. boolean&nbsp;dateAxis,
  1989. java.lang.String&nbsp;yAxisLabel,
  1990. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset)</pre>
  1991. <div class="block">Creates and returns a default instance of an XY bar chart.
  1992. <P>
  1993. The chart object returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance
  1994. as the plot, with a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> for the domain axis, a
  1995. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/xy/XYBarRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYBarRenderer</code></a> as the
  1996. renderer.</div>
  1997. <dl>
  1998. <dt><span class="paramLabel">Parameters:</span></dt>
  1999. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2000. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2001. <dd><code>dateAxis</code> - make the domain axis display dates?</dd>
  2002. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2003. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2004. <dt><span class="returnLabel">Returns:</span></dt>
  2005. <dd>An XY bar chart.</dd>
  2006. <dt><span class="simpleTagLabel">Since:</span></dt>
  2007. <dd>1.0.16</dd>
  2008. </dl>
  2009. </li>
  2010. </ul>
  2011. <a name="createXYBarChart-java.lang.String-java.lang.String-boolean-java.lang.String-org.jfree.data.xy.IntervalXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2012. <!-- -->
  2013. </a>
  2014. <ul class="blockList">
  2015. <li class="blockList">
  2016. <h4>createXYBarChart</h4>
  2017. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1761">createXYBarChart</a>(java.lang.String&nbsp;title,
  2018. java.lang.String&nbsp;xAxisLabel,
  2019. boolean&nbsp;dateAxis,
  2020. java.lang.String&nbsp;yAxisLabel,
  2021. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset,
  2022. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2023. boolean&nbsp;legend,
  2024. boolean&nbsp;tooltips,
  2025. boolean&nbsp;urls)</pre>
  2026. <div class="block">Creates and returns a default instance of an XY bar chart.
  2027. <P>
  2028. The chart object returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance
  2029. as the plot, with a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> for the domain axis, a
  2030. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/xy/XYBarRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYBarRenderer</code></a> as the
  2031. renderer.</div>
  2032. <dl>
  2033. <dt><span class="paramLabel">Parameters:</span></dt>
  2034. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2035. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2036. <dd><code>dateAxis</code> - make the domain axis display dates?</dd>
  2037. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2038. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2039. <dd><code>orientation</code> - the orientation (horizontal or vertical)
  2040. (<code>null</code> NOT permitted).</dd>
  2041. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2042. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2043. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2044. <dt><span class="returnLabel">Returns:</span></dt>
  2045. <dd>An XY bar chart.</dd>
  2046. </dl>
  2047. </li>
  2048. </ul>
  2049. <a name="createXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  2050. <!-- -->
  2051. </a>
  2052. <ul class="blockList">
  2053. <li class="blockList">
  2054. <h4>createXYAreaChart</h4>
  2055. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1820">createXYAreaChart</a>(java.lang.String&nbsp;title,
  2056. java.lang.String&nbsp;xAxisLabel,
  2057. java.lang.String&nbsp;yAxisLabel,
  2058. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  2059. <div class="block">Creates an area chart using an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>.
  2060. <P>
  2061. The chart object returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance
  2062. as the plot, with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a
  2063. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/xy/XYAreaRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYAreaRenderer</code></a> as
  2064. the renderer.</div>
  2065. <dl>
  2066. <dt><span class="paramLabel">Parameters:</span></dt>
  2067. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2068. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2069. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2070. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2071. <dt><span class="returnLabel">Returns:</span></dt>
  2072. <dd>An XY area chart.</dd>
  2073. <dt><span class="simpleTagLabel">Since:</span></dt>
  2074. <dd>1.0.16</dd>
  2075. </dl>
  2076. </li>
  2077. </ul>
  2078. <a name="createXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2079. <!-- -->
  2080. </a>
  2081. <ul class="blockList">
  2082. <li class="blockList">
  2083. <h4>createXYAreaChart</h4>
  2084. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1846">createXYAreaChart</a>(java.lang.String&nbsp;title,
  2085. java.lang.String&nbsp;xAxisLabel,
  2086. java.lang.String&nbsp;yAxisLabel,
  2087. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  2088. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2089. boolean&nbsp;legend,
  2090. boolean&nbsp;tooltips,
  2091. boolean&nbsp;urls)</pre>
  2092. <div class="block">Creates an area chart using an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>.
  2093. <P>
  2094. The chart object returned by this method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance
  2095. as the plot, with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a
  2096. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the range axis, and a <a href="../../../org/jfree/chart/renderer/xy/XYAreaRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYAreaRenderer</code></a> as
  2097. the renderer.</div>
  2098. <dl>
  2099. <dt><span class="paramLabel">Parameters:</span></dt>
  2100. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2101. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2102. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2103. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2104. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2105. (<code>null</code> NOT permitted).</dd>
  2106. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2107. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2108. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2109. <dt><span class="returnLabel">Returns:</span></dt>
  2110. <dd>An XY area chart.</dd>
  2111. </dl>
  2112. </li>
  2113. </ul>
  2114. <a name="createStackedXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.TableXYDataset-">
  2115. <!-- -->
  2116. </a>
  2117. <ul class="blockList">
  2118. <li class="blockList">
  2119. <h4>createStackedXYAreaChart</h4>
  2120. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1892">createStackedXYAreaChart</a>(java.lang.String&nbsp;title,
  2121. java.lang.String&nbsp;xAxisLabel,
  2122. java.lang.String&nbsp;yAxisLabel,
  2123. <a href="../../../org/jfree/data/xy/TableXYDataset.html" title="interface in org.jfree.data.xy">TableXYDataset</a>&nbsp;dataset)</pre>
  2124. <div class="block">Creates a stacked XY area plot. The chart object returned by this
  2125. method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance as the plot, with a
  2126. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  2127. range axis, and a <a href="../../../org/jfree/chart/renderer/xy/StackedXYAreaRenderer2.html" title="class in org.jfree.chart.renderer.xy"><code>StackedXYAreaRenderer2</code></a> as the renderer.</div>
  2128. <dl>
  2129. <dt><span class="paramLabel">Parameters:</span></dt>
  2130. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2131. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2132. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2133. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2134. <dt><span class="returnLabel">Returns:</span></dt>
  2135. <dd>A stacked XY area chart.</dd>
  2136. <dt><span class="simpleTagLabel">Since:</span></dt>
  2137. <dd>1.0.16</dd>
  2138. </dl>
  2139. </li>
  2140. </ul>
  2141. <a name="createStackedXYAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.TableXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2142. <!-- -->
  2143. </a>
  2144. <ul class="blockList">
  2145. <li class="blockList">
  2146. <h4>createStackedXYAreaChart</h4>
  2147. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1916">createStackedXYAreaChart</a>(java.lang.String&nbsp;title,
  2148. java.lang.String&nbsp;xAxisLabel,
  2149. java.lang.String&nbsp;yAxisLabel,
  2150. <a href="../../../org/jfree/data/xy/TableXYDataset.html" title="interface in org.jfree.data.xy">TableXYDataset</a>&nbsp;dataset,
  2151. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2152. boolean&nbsp;legend,
  2153. boolean&nbsp;tooltips,
  2154. boolean&nbsp;urls)</pre>
  2155. <div class="block">Creates a stacked XY area plot. The chart object returned by this
  2156. method uses an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> instance as the plot, with a
  2157. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis, a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> as the
  2158. range axis, and a <a href="../../../org/jfree/chart/renderer/xy/StackedXYAreaRenderer2.html" title="class in org.jfree.chart.renderer.xy"><code>StackedXYAreaRenderer2</code></a> as the renderer.</div>
  2159. <dl>
  2160. <dt><span class="paramLabel">Parameters:</span></dt>
  2161. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2162. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2163. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2164. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2165. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2166. (<code>null</code> NOT permitted).</dd>
  2167. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2168. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2169. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2170. <dt><span class="returnLabel">Returns:</span></dt>
  2171. <dd>A stacked XY area chart.</dd>
  2172. </dl>
  2173. </li>
  2174. </ul>
  2175. <a name="createXYLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  2176. <!-- -->
  2177. </a>
  2178. <ul class="blockList">
  2179. <li class="blockList">
  2180. <h4>createXYLineChart</h4>
  2181. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1962">createXYLineChart</a>(java.lang.String&nbsp;title,
  2182. java.lang.String&nbsp;xAxisLabel,
  2183. java.lang.String&nbsp;yAxisLabel,
  2184. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  2185. <div class="block">Creates a line chart (based on an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>) with default
  2186. settings.</div>
  2187. <dl>
  2188. <dt><span class="paramLabel">Parameters:</span></dt>
  2189. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2190. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2191. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2192. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2193. <dt><span class="returnLabel">Returns:</span></dt>
  2194. <dd>The chart.</dd>
  2195. </dl>
  2196. </li>
  2197. </ul>
  2198. <a name="createXYLineChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2199. <!-- -->
  2200. </a>
  2201. <ul class="blockList">
  2202. <li class="blockList">
  2203. <h4>createXYLineChart</h4>
  2204. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.1984">createXYLineChart</a>(java.lang.String&nbsp;title,
  2205. java.lang.String&nbsp;xAxisLabel,
  2206. java.lang.String&nbsp;yAxisLabel,
  2207. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  2208. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2209. boolean&nbsp;legend,
  2210. boolean&nbsp;tooltips,
  2211. boolean&nbsp;urls)</pre>
  2212. <div class="block">Creates a line chart (based on an <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy"><code>XYDataset</code></a>) with default
  2213. settings.</div>
  2214. <dl>
  2215. <dt><span class="paramLabel">Parameters:</span></dt>
  2216. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2217. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2218. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2219. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2220. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2221. (<code>null</code> NOT permitted).</dd>
  2222. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2223. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2224. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2225. <dt><span class="returnLabel">Returns:</span></dt>
  2226. <dd>The chart.</dd>
  2227. </dl>
  2228. </li>
  2229. </ul>
  2230. <a name="createXYStepChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  2231. <!-- -->
  2232. </a>
  2233. <ul class="blockList">
  2234. <li class="blockList">
  2235. <h4>createXYStepChart</h4>
  2236. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2021">createXYStepChart</a>(java.lang.String&nbsp;title,
  2237. java.lang.String&nbsp;xAxisLabel,
  2238. java.lang.String&nbsp;yAxisLabel,
  2239. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  2240. <div class="block">Creates a stepped XY plot with default settings.</div>
  2241. <dl>
  2242. <dt><span class="paramLabel">Parameters:</span></dt>
  2243. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2244. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2245. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2246. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2247. <dt><span class="returnLabel">Returns:</span></dt>
  2248. <dd>A chart.</dd>
  2249. <dt><span class="simpleTagLabel">Since:</span></dt>
  2250. <dd>1.0.16</dd>
  2251. </dl>
  2252. </li>
  2253. </ul>
  2254. <a name="createXYStepChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2255. <!-- -->
  2256. </a>
  2257. <ul class="blockList">
  2258. <li class="blockList">
  2259. <h4>createXYStepChart</h4>
  2260. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2042">createXYStepChart</a>(java.lang.String&nbsp;title,
  2261. java.lang.String&nbsp;xAxisLabel,
  2262. java.lang.String&nbsp;yAxisLabel,
  2263. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  2264. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2265. boolean&nbsp;legend,
  2266. boolean&nbsp;tooltips,
  2267. boolean&nbsp;urls)</pre>
  2268. <div class="block">Creates a stepped XY plot with default settings.</div>
  2269. <dl>
  2270. <dt><span class="paramLabel">Parameters:</span></dt>
  2271. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2272. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2273. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2274. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2275. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2276. (<code>null</code> NOT permitted).</dd>
  2277. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2278. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2279. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2280. <dt><span class="returnLabel">Returns:</span></dt>
  2281. <dd>A chart.</dd>
  2282. </dl>
  2283. </li>
  2284. </ul>
  2285. <a name="createXYStepAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  2286. <!-- -->
  2287. </a>
  2288. <ul class="blockList">
  2289. <li class="blockList">
  2290. <h4>createXYStepAreaChart</h4>
  2291. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2087">createXYStepAreaChart</a>(java.lang.String&nbsp;title,
  2292. java.lang.String&nbsp;xAxisLabel,
  2293. java.lang.String&nbsp;yAxisLabel,
  2294. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  2295. <div class="block">Creates a filled stepped XY plot with default settings.</div>
  2296. <dl>
  2297. <dt><span class="paramLabel">Parameters:</span></dt>
  2298. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2299. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2300. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2301. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2302. <dt><span class="returnLabel">Returns:</span></dt>
  2303. <dd>A chart.</dd>
  2304. <dt><span class="simpleTagLabel">Since:</span></dt>
  2305. <dd>1.0.16</dd>
  2306. </dl>
  2307. </li>
  2308. </ul>
  2309. <a name="createXYStepAreaChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2310. <!-- -->
  2311. </a>
  2312. <ul class="blockList">
  2313. <li class="blockList">
  2314. <h4>createXYStepAreaChart</h4>
  2315. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2108">createXYStepAreaChart</a>(java.lang.String&nbsp;title,
  2316. java.lang.String&nbsp;xAxisLabel,
  2317. java.lang.String&nbsp;yAxisLabel,
  2318. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  2319. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2320. boolean&nbsp;legend,
  2321. boolean&nbsp;tooltips,
  2322. boolean&nbsp;urls)</pre>
  2323. <div class="block">Creates a filled stepped XY plot with default settings.</div>
  2324. <dl>
  2325. <dt><span class="paramLabel">Parameters:</span></dt>
  2326. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2327. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2328. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2329. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2330. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2331. (<code>null</code> NOT permitted).</dd>
  2332. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2333. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2334. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2335. <dt><span class="returnLabel">Returns:</span></dt>
  2336. <dd>A chart.</dd>
  2337. </dl>
  2338. </li>
  2339. </ul>
  2340. <a name="createTimeSeriesChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-">
  2341. <!-- -->
  2342. </a>
  2343. <ul class="blockList">
  2344. <li class="blockList">
  2345. <h4>createTimeSeriesChart</h4>
  2346. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2162">createTimeSeriesChart</a>(java.lang.String&nbsp;title,
  2347. java.lang.String&nbsp;timeAxisLabel,
  2348. java.lang.String&nbsp;valueAxisLabel,
  2349. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  2350. <div class="block">Creates and returns a time series chart. A time series chart is an
  2351. <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> with a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> for the x-axis and a
  2352. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the y-axis. The default renderer is an
  2353. <a href="../../../org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYLineAndShapeRenderer</code></a>.
  2354. <P>
  2355. A convenient dataset to use with this chart is a
  2356. <a href="../../../org/jfree/data/time/TimeSeriesCollection.html" title="class in org.jfree.data.time"><code>TimeSeriesCollection</code></a>.</div>
  2357. <dl>
  2358. <dt><span class="paramLabel">Parameters:</span></dt>
  2359. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2360. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2361. permitted).</dd>
  2362. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2363. permitted).</dd>
  2364. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2365. <dt><span class="returnLabel">Returns:</span></dt>
  2366. <dd>A time series chart.</dd>
  2367. <dt><span class="simpleTagLabel">Since:</span></dt>
  2368. <dd>1.0.16</dd>
  2369. </dl>
  2370. </li>
  2371. </ul>
  2372. <a name="createTimeSeriesChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYDataset-boolean-boolean-boolean-">
  2373. <!-- -->
  2374. </a>
  2375. <ul class="blockList">
  2376. <li class="blockList">
  2377. <h4>createTimeSeriesChart</h4>
  2378. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2189">createTimeSeriesChart</a>(java.lang.String&nbsp;title,
  2379. java.lang.String&nbsp;timeAxisLabel,
  2380. java.lang.String&nbsp;valueAxisLabel,
  2381. <a href="../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  2382. boolean&nbsp;legend,
  2383. boolean&nbsp;tooltips,
  2384. boolean&nbsp;urls)</pre>
  2385. <div class="block">Creates and returns a time series chart. A time series chart is an
  2386. <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> with a <a href="../../../org/jfree/chart/axis/DateAxis.html" title="class in org.jfree.chart.axis"><code>DateAxis</code></a> for the x-axis and a
  2387. <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the y-axis. The default renderer is an
  2388. <a href="../../../org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYLineAndShapeRenderer</code></a>.
  2389. <P>
  2390. A convenient dataset to use with this chart is a
  2391. <a href="../../../org/jfree/data/time/TimeSeriesCollection.html" title="class in org.jfree.data.time"><code>TimeSeriesCollection</code></a>.</div>
  2392. <dl>
  2393. <dt><span class="paramLabel">Parameters:</span></dt>
  2394. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2395. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2396. permitted).</dd>
  2397. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2398. permitted).</dd>
  2399. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2400. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2401. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2402. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2403. <dt><span class="returnLabel">Returns:</span></dt>
  2404. <dd>A time series chart.</dd>
  2405. </dl>
  2406. </li>
  2407. </ul>
  2408. <a name="createCandlestickChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-boolean-">
  2409. <!-- -->
  2410. </a>
  2411. <ul class="blockList">
  2412. <li class="blockList">
  2413. <h4>createCandlestickChart</h4>
  2414. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2237">createCandlestickChart</a>(java.lang.String&nbsp;title,
  2415. java.lang.String&nbsp;timeAxisLabel,
  2416. java.lang.String&nbsp;valueAxisLabel,
  2417. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  2418. boolean&nbsp;legend)</pre>
  2419. <div class="block">Creates and returns a default instance of a candlesticks chart.</div>
  2420. <dl>
  2421. <dt><span class="paramLabel">Parameters:</span></dt>
  2422. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2423. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2424. permitted).</dd>
  2425. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2426. permitted).</dd>
  2427. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2428. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2429. <dt><span class="returnLabel">Returns:</span></dt>
  2430. <dd>A candlestick chart.</dd>
  2431. </dl>
  2432. </li>
  2433. </ul>
  2434. <a name="createHighLowChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-boolean-">
  2435. <!-- -->
  2436. </a>
  2437. <ul class="blockList">
  2438. <li class="blockList">
  2439. <h4>createHighLowChart</h4>
  2440. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2265">createHighLowChart</a>(java.lang.String&nbsp;title,
  2441. java.lang.String&nbsp;timeAxisLabel,
  2442. java.lang.String&nbsp;valueAxisLabel,
  2443. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  2444. boolean&nbsp;legend)</pre>
  2445. <div class="block">Creates and returns a default instance of a high-low-open-close chart.</div>
  2446. <dl>
  2447. <dt><span class="paramLabel">Parameters:</span></dt>
  2448. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2449. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2450. permitted).</dd>
  2451. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2452. permitted).</dd>
  2453. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2454. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2455. <dt><span class="returnLabel">Returns:</span></dt>
  2456. <dd>A high-low-open-close chart.</dd>
  2457. </dl>
  2458. </li>
  2459. </ul>
  2460. <a name="createHighLowChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.OHLCDataset-org.jfree.chart.axis.Timeline-boolean-">
  2461. <!-- -->
  2462. </a>
  2463. <ul class="blockList">
  2464. <li class="blockList">
  2465. <h4>createHighLowChart</h4>
  2466. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2299">createHighLowChart</a>(java.lang.String&nbsp;title,
  2467. java.lang.String&nbsp;timeAxisLabel,
  2468. java.lang.String&nbsp;valueAxisLabel,
  2469. <a href="../../../org/jfree/data/xy/OHLCDataset.html" title="interface in org.jfree.data.xy">OHLCDataset</a>&nbsp;dataset,
  2470. <a href="../../../org/jfree/chart/axis/Timeline.html" title="interface in org.jfree.chart.axis">Timeline</a>&nbsp;timeline,
  2471. boolean&nbsp;legend)</pre>
  2472. <div class="block">Creates and returns a default instance of a high-low-open-close chart
  2473. with a special timeline. This timeline can be a
  2474. <a href="../../../org/jfree/chart/axis/SegmentedTimeline.html" title="class in org.jfree.chart.axis"><code>SegmentedTimeline</code></a> such as the Monday
  2475. through Friday timeline that will remove Saturdays and Sundays from
  2476. the axis.</div>
  2477. <dl>
  2478. <dt><span class="paramLabel">Parameters:</span></dt>
  2479. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2480. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2481. permitted).</dd>
  2482. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2483. permitted).</dd>
  2484. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2485. <dd><code>timeline</code> - the timeline.</dd>
  2486. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2487. <dt><span class="returnLabel">Returns:</span></dt>
  2488. <dd>A high-low-open-close chart.</dd>
  2489. </dl>
  2490. </li>
  2491. </ul>
  2492. <a name="createBubbleChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYZDataset-">
  2493. <!-- -->
  2494. </a>
  2495. <ul class="blockList">
  2496. <li class="blockList">
  2497. <h4>createBubbleChart</h4>
  2498. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2331">createBubbleChart</a>(java.lang.String&nbsp;title,
  2499. java.lang.String&nbsp;xAxisLabel,
  2500. java.lang.String&nbsp;yAxisLabel,
  2501. <a href="../../../org/jfree/data/xy/XYZDataset.html" title="interface in org.jfree.data.xy">XYZDataset</a>&nbsp;dataset)</pre>
  2502. <div class="block">Creates a bubble chart with default settings. The chart is composed of
  2503. an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a>, with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis,
  2504. a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the range axis, and an <a href="../../../org/jfree/chart/renderer/xy/XYBubbleRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYBubbleRenderer</code></a>
  2505. to draw the data items.</div>
  2506. <dl>
  2507. <dt><span class="paramLabel">Parameters:</span></dt>
  2508. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2509. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2510. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2511. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2512. <dt><span class="returnLabel">Returns:</span></dt>
  2513. <dd>A bubble chart.</dd>
  2514. <dt><span class="simpleTagLabel">Since:</span></dt>
  2515. <dd>1.0.16</dd>
  2516. </dl>
  2517. </li>
  2518. </ul>
  2519. <a name="createBubbleChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.XYZDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2520. <!-- -->
  2521. </a>
  2522. <ul class="blockList">
  2523. <li class="blockList">
  2524. <h4>createBubbleChart</h4>
  2525. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2355">createBubbleChart</a>(java.lang.String&nbsp;title,
  2526. java.lang.String&nbsp;xAxisLabel,
  2527. java.lang.String&nbsp;yAxisLabel,
  2528. <a href="../../../org/jfree/data/xy/XYZDataset.html" title="interface in org.jfree.data.xy">XYZDataset</a>&nbsp;dataset,
  2529. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2530. boolean&nbsp;legend,
  2531. boolean&nbsp;tooltips,
  2532. boolean&nbsp;urls)</pre>
  2533. <div class="block">Creates a bubble chart with default settings. The chart is composed of
  2534. an <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a>, with a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the domain axis,
  2535. a <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> for the range axis, and an <a href="../../../org/jfree/chart/renderer/xy/XYBubbleRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYBubbleRenderer</code></a>
  2536. to draw the data items.</div>
  2537. <dl>
  2538. <dt><span class="paramLabel">Parameters:</span></dt>
  2539. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2540. <dd><code>xAxisLabel</code> - a label for the X-axis (<code>null</code> permitted).</dd>
  2541. <dd><code>yAxisLabel</code> - a label for the Y-axis (<code>null</code> permitted).</dd>
  2542. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2543. <dd><code>orientation</code> - the orientation (horizontal or vertical)
  2544. (<code>null</code> NOT permitted).</dd>
  2545. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2546. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2547. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2548. <dt><span class="returnLabel">Returns:</span></dt>
  2549. <dd>A bubble chart.</dd>
  2550. </dl>
  2551. </li>
  2552. </ul>
  2553. <a name="createHistogram-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.IntervalXYDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2554. <!-- -->
  2555. </a>
  2556. <ul class="blockList">
  2557. <li class="blockList">
  2558. <h4>createHistogram</h4>
  2559. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2402">createHistogram</a>(java.lang.String&nbsp;title,
  2560. java.lang.String&nbsp;xAxisLabel,
  2561. java.lang.String&nbsp;yAxisLabel,
  2562. <a href="../../../org/jfree/data/xy/IntervalXYDataset.html" title="interface in org.jfree.data.xy">IntervalXYDataset</a>&nbsp;dataset,
  2563. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2564. boolean&nbsp;legend,
  2565. boolean&nbsp;tooltips,
  2566. boolean&nbsp;urls)</pre>
  2567. <div class="block">Creates a histogram chart. This chart is constructed with an
  2568. <a href="../../../org/jfree/chart/plot/XYPlot.html" title="class in org.jfree.chart.plot"><code>XYPlot</code></a> using an <a href="../../../org/jfree/chart/renderer/xy/XYBarRenderer.html" title="class in org.jfree.chart.renderer.xy"><code>XYBarRenderer</code></a>. The domain and range
  2569. axes are <a href="../../../org/jfree/chart/axis/NumberAxis.html" title="class in org.jfree.chart.axis"><code>NumberAxis</code></a> instances.</div>
  2570. <dl>
  2571. <dt><span class="paramLabel">Parameters:</span></dt>
  2572. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2573. <dd><code>xAxisLabel</code> - the x axis label (<code>null</code> permitted).</dd>
  2574. <dd><code>yAxisLabel</code> - the y axis label (<code>null</code> permitted).</dd>
  2575. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  2576. <dd><code>orientation</code> - the orientation (horizontal or vertical)
  2577. (<code>null</code> NOT permitted).</dd>
  2578. <dd><code>legend</code> - create a legend?</dd>
  2579. <dd><code>tooltips</code> - display tooltips?</dd>
  2580. <dd><code>urls</code> - generate URLs?</dd>
  2581. <dt><span class="returnLabel">Returns:</span></dt>
  2582. <dd>The chart.</dd>
  2583. </dl>
  2584. </li>
  2585. </ul>
  2586. <a name="createBoxAndWhiskerChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.statistics.BoxAndWhiskerCategoryDataset-boolean-">
  2587. <!-- -->
  2588. </a>
  2589. <ul class="blockList">
  2590. <li class="blockList">
  2591. <h4>createBoxAndWhiskerChart</h4>
  2592. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2447">createBoxAndWhiskerChart</a>(java.lang.String&nbsp;title,
  2593. java.lang.String&nbsp;categoryAxisLabel,
  2594. java.lang.String&nbsp;valueAxisLabel,
  2595. <a href="../../../org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.html" title="interface in org.jfree.data.statistics">BoxAndWhiskerCategoryDataset</a>&nbsp;dataset,
  2596. boolean&nbsp;legend)</pre>
  2597. <div class="block">Creates and returns a default instance of a box and whisker chart
  2598. based on data from a <a href="../../../org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.html" title="interface in org.jfree.data.statistics"><code>BoxAndWhiskerCategoryDataset</code></a>.</div>
  2599. <dl>
  2600. <dt><span class="paramLabel">Parameters:</span></dt>
  2601. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2602. <dd><code>categoryAxisLabel</code> - a label for the category axis
  2603. (<code>null</code> permitted).</dd>
  2604. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2605. permitted).</dd>
  2606. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2607. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2608. <dt><span class="returnLabel">Returns:</span></dt>
  2609. <dd>A box and whisker chart.</dd>
  2610. <dt><span class="simpleTagLabel">Since:</span></dt>
  2611. <dd>1.0.4</dd>
  2612. </dl>
  2613. </li>
  2614. </ul>
  2615. <a name="createBoxAndWhiskerChart-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.statistics.BoxAndWhiskerXYDataset-boolean-">
  2616. <!-- -->
  2617. </a>
  2618. <ul class="blockList">
  2619. <li class="blockList">
  2620. <h4>createBoxAndWhiskerChart</h4>
  2621. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2479">createBoxAndWhiskerChart</a>(java.lang.String&nbsp;title,
  2622. java.lang.String&nbsp;timeAxisLabel,
  2623. java.lang.String&nbsp;valueAxisLabel,
  2624. <a href="../../../org/jfree/data/statistics/BoxAndWhiskerXYDataset.html" title="interface in org.jfree.data.statistics">BoxAndWhiskerXYDataset</a>&nbsp;dataset,
  2625. boolean&nbsp;legend)</pre>
  2626. <div class="block">Creates and returns a default instance of a box and whisker chart.</div>
  2627. <dl>
  2628. <dt><span class="paramLabel">Parameters:</span></dt>
  2629. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2630. <dd><code>timeAxisLabel</code> - a label for the time axis (<code>null</code>
  2631. permitted).</dd>
  2632. <dd><code>valueAxisLabel</code> - a label for the value axis (<code>null</code>
  2633. permitted).</dd>
  2634. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2635. <dd><code>legend</code> - a flag specifying whether or not a legend is required.</dd>
  2636. <dt><span class="returnLabel">Returns:</span></dt>
  2637. <dd>A box and whisker chart.</dd>
  2638. </dl>
  2639. </li>
  2640. </ul>
  2641. <a name="createWindPlot-java.lang.String-java.lang.String-java.lang.String-org.jfree.data.xy.WindDataset-boolean-boolean-boolean-">
  2642. <!-- -->
  2643. </a>
  2644. <ul class="blockList">
  2645. <li class="blockList">
  2646. <h4>createWindPlot</h4>
  2647. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2509">createWindPlot</a>(java.lang.String&nbsp;title,
  2648. java.lang.String&nbsp;xAxisLabel,
  2649. java.lang.String&nbsp;yAxisLabel,
  2650. <a href="../../../org/jfree/data/xy/WindDataset.html" title="interface in org.jfree.data.xy">WindDataset</a>&nbsp;dataset,
  2651. boolean&nbsp;legend,
  2652. boolean&nbsp;tooltips,
  2653. boolean&nbsp;urls)</pre>
  2654. <div class="block">Creates a wind plot with default settings.</div>
  2655. <dl>
  2656. <dt><span class="paramLabel">Parameters:</span></dt>
  2657. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2658. <dd><code>xAxisLabel</code> - a label for the x-axis (<code>null</code> permitted).</dd>
  2659. <dd><code>yAxisLabel</code> - a label for the y-axis (<code>null</code> permitted).</dd>
  2660. <dd><code>dataset</code> - the dataset for the chart (<code>null</code> permitted).</dd>
  2661. <dd><code>legend</code> - a flag that controls whether or not a legend is created.</dd>
  2662. <dd><code>tooltips</code> - configure chart to generate tool tips?</dd>
  2663. <dd><code>urls</code> - configure chart to generate URLs?</dd>
  2664. <dt><span class="returnLabel">Returns:</span></dt>
  2665. <dd>A wind plot.</dd>
  2666. </dl>
  2667. </li>
  2668. </ul>
  2669. <a name="createWaferMapChart-java.lang.String-org.jfree.data.general.WaferMapDataset-org.jfree.chart.plot.PlotOrientation-boolean-boolean-boolean-">
  2670. <!-- -->
  2671. </a>
  2672. <ul class="blockListLast">
  2673. <li class="blockList">
  2674. <h4>createWaferMapChart</h4>
  2675. <pre>public static&nbsp;<a href="../../../org/jfree/chart/JFreeChart.html" title="class in org.jfree.chart">JFreeChart</a>&nbsp;<a href="../../../src-html/org/jfree/chart/ChartFactory.html#line.2545">createWaferMapChart</a>(java.lang.String&nbsp;title,
  2676. <a href="../../../org/jfree/data/general/WaferMapDataset.html" title="class in org.jfree.data.general">WaferMapDataset</a>&nbsp;dataset,
  2677. <a href="../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;orientation,
  2678. boolean&nbsp;legend,
  2679. boolean&nbsp;tooltips,
  2680. boolean&nbsp;urls)</pre>
  2681. <div class="block">Creates a wafer map chart.</div>
  2682. <dl>
  2683. <dt><span class="paramLabel">Parameters:</span></dt>
  2684. <dd><code>title</code> - the chart title (<code>null</code> permitted).</dd>
  2685. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  2686. <dd><code>orientation</code> - the plot orientation (horizontal or vertical)
  2687. (<code>null</code> NOT permitted.</dd>
  2688. <dd><code>legend</code> - display a legend?</dd>
  2689. <dd><code>tooltips</code> - generate tooltips?</dd>
  2690. <dd><code>urls</code> - generate URLs?</dd>
  2691. <dt><span class="returnLabel">Returns:</span></dt>
  2692. <dd>A wafer map chart.</dd>
  2693. </dl>
  2694. </li>
  2695. </ul>
  2696. </li>
  2697. </ul>
  2698. </li>
  2699. </ul>
  2700. </div>
  2701. </div>
  2702. <!-- ========= END OF CLASS DATA ========= -->
  2703. <!-- ======= START OF BOTTOM NAVBAR ====== -->
  2704. <div class="bottomNav"><a name="navbar.bottom">
  2705. <!-- -->
  2706. </a>
  2707. <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
  2708. <a name="navbar.bottom.firstrow">
  2709. <!-- -->
  2710. </a>
  2711. <ul class="navList" title="Navigation">
  2712. <li><a href="../../../overview-summary.html">Overview</a></li>
  2713. <li><a href="package-summary.html">Package</a></li>
  2714. <li class="navBarCell1Rev">Class</li>
  2715. <li><a href="class-use/ChartFactory.html">Use</a></li>
  2716. <li><a href="package-tree.html">Tree</a></li>
  2717. <li><a href="../../../deprecated-list.html">Deprecated</a></li>
  2718. <li><a href="../../../index-files/index-1.html">Index</a></li>
  2719. <li><a href="../../../help-doc.html">Help</a></li>
  2720. </ul>
  2721. </div>
  2722. <div class="subNav">
  2723. <ul class="navList">
  2724. <li><a href="../../../org/jfree/chart/ChartColor.html" title="class in org.jfree.chart"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
  2725. <li><a href="../../../org/jfree/chart/ChartFrame.html" title="class in org.jfree.chart"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
  2726. </ul>
  2727. <ul class="navList">
  2728. <li><a href="../../../index.html?org/jfree/chart/ChartFactory.html" target="_top">Frames</a></li>
  2729. <li><a href="ChartFactory.html" target="_top">No&nbsp;Frames</a></li>
  2730. </ul>
  2731. <ul class="navList" id="allclasses_navbar_bottom">
  2732. <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
  2733. </ul>
  2734. <div>
  2735. <script type="text/javascript"><!--
  2736. allClassesLink = document.getElementById("allclasses_navbar_bottom");
  2737. if(window==top) {
  2738. allClassesLink.style.display = "block";
  2739. }
  2740. else {
  2741. allClassesLink.style.display = "none";
  2742. }
  2743. //-->
  2744. </script>
  2745. </div>
  2746. <div>
  2747. <ul class="subNavList">
  2748. <li>Summary:&nbsp;</li>
  2749. <li>Nested&nbsp;|&nbsp;</li>
  2750. <li>Field&nbsp;|&nbsp;</li>
  2751. <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
  2752. <li><a href="#method.summary">Method</a></li>
  2753. </ul>
  2754. <ul class="subNavList">
  2755. <li>Detail:&nbsp;</li>
  2756. <li>Field&nbsp;|&nbsp;</li>
  2757. <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
  2758. <li><a href="#method.detail">Method</a></li>
  2759. </ul>
  2760. </div>
  2761. <a name="skip.navbar.bottom">
  2762. <!-- -->
  2763. </a></div>
  2764. <!-- ======== END OF BOTTOM NAVBAR ======= -->
  2765. </body>
  2766. </html>