PolarPlot.html 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811
  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:33 CEST 2014 -->
  6. <title>PolarPlot (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="PolarPlot (JFreeChart Class Library (version 1.0.19-fx))";
  16. }
  17. }
  18. catch(err) {
  19. }
  20. //-->
  21. var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":42,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":42,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":42,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10};
  22. var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated 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/PolarPlot.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/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
  53. <li><a href="../../../../org/jfree/chart/plot/RainbowPalette.html" title="class in org.jfree.chart.plot"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
  54. </ul>
  55. <ul class="navList">
  56. <li><a href="../../../../index.html?org/jfree/chart/plot/PolarPlot.html" target="_top">Frames</a></li>
  57. <li><a href="PolarPlot.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><a href="#field.summary">Field</a>&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><a href="#field.detail">Field</a>&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.plot</div>
  96. <h2 title="Class PolarPlot" class="title">Class PolarPlot</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><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">org.jfree.chart.plot.Plot</a></li>
  104. <li>
  105. <ul class="inheritance">
  106. <li>org.jfree.chart.plot.PolarPlot</li>
  107. </ul>
  108. </li>
  109. </ul>
  110. </li>
  111. </ul>
  112. <div class="description">
  113. <ul class="blockList">
  114. <li class="blockList">
  115. <dl>
  116. <dt>All Implemented Interfaces:</dt>
  117. <dd>java.io.Serializable, java.lang.Cloneable, java.util.EventListener, <a href="../../../../org/jfree/chart/event/AnnotationChangeListener.html" title="interface in org.jfree.chart.event">AnnotationChangeListener</a>, <a href="../../../../org/jfree/chart/event/AxisChangeListener.html" title="interface in org.jfree.chart.event">AxisChangeListener</a>, <a href="../../../../org/jfree/chart/event/MarkerChangeListener.html" title="interface in org.jfree.chart.event">MarkerChangeListener</a>, <a href="../../../../org/jfree/chart/event/RendererChangeListener.html" title="interface in org.jfree.chart.event">RendererChangeListener</a>, <a href="../../../../org/jfree/chart/LegendItemSource.html" title="interface in org.jfree.chart">LegendItemSource</a>, <a href="../../../../org/jfree/chart/plot/ValueAxisPlot.html" title="interface in org.jfree.chart.plot">ValueAxisPlot</a>, <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a>, <a href="../../../../org/jfree/data/general/DatasetChangeListener.html" title="interface in org.jfree.data.general">DatasetChangeListener</a>, org.jfree.util.PublicCloneable</dd>
  118. </dl>
  119. <hr>
  120. <br>
  121. <pre>public class <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.125">PolarPlot</a>
  122. extends <a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a>
  123. implements <a href="../../../../org/jfree/chart/plot/ValueAxisPlot.html" title="interface in org.jfree.chart.plot">ValueAxisPlot</a>, <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a>, <a href="../../../../org/jfree/chart/event/RendererChangeListener.html" title="interface in org.jfree.chart.event">RendererChangeListener</a>, java.lang.Cloneable, java.io.Serializable</pre>
  124. <div class="block">Plots data that is in (theta, radius) pairs where
  125. theta equal to zero is due north and increases clockwise.</div>
  126. <dl>
  127. <dt><span class="seeLabel">See Also:</span></dt>
  128. <dd><a href="../../../../serialized-form.html#org.jfree.chart.plot.PolarPlot">Serialized Form</a></dd>
  129. </dl>
  130. </li>
  131. </ul>
  132. </div>
  133. <div class="summary">
  134. <ul class="blockList">
  135. <li class="blockList">
  136. <!-- =========== FIELD SUMMARY =========== -->
  137. <ul class="blockList">
  138. <li class="blockList"><a name="field.summary">
  139. <!-- -->
  140. </a>
  141. <h3>Field Summary</h3>
  142. <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
  143. <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
  144. <tr>
  145. <th class="colFirst" scope="col">Modifier and Type</th>
  146. <th class="colLast" scope="col">Field and Description</th>
  147. </tr>
  148. <tr class="altColor">
  149. <td class="colFirst"><code>static double</code></td>
  150. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#DEFAULT_ANGLE_OFFSET">DEFAULT_ANGLE_OFFSET</a></span></code>
  151. <div class="block">The default angle offset.</div>
  152. </td>
  153. </tr>
  154. <tr class="rowColor">
  155. <td class="colFirst"><code>static double</code></td>
  156. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#DEFAULT_ANGLE_TICK_UNIT_SIZE">DEFAULT_ANGLE_TICK_UNIT_SIZE</a></span></code>
  157. <div class="block">The default angle tick unit size.</div>
  158. </td>
  159. </tr>
  160. <tr class="altColor">
  161. <td class="colFirst"><code>static java.awt.Paint</code></td>
  162. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#DEFAULT_GRIDLINE_PAINT">DEFAULT_GRIDLINE_PAINT</a></span></code>
  163. <div class="block">The default grid line paint.</div>
  164. </td>
  165. </tr>
  166. <tr class="rowColor">
  167. <td class="colFirst"><code>static java.awt.Stroke</code></td>
  168. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#DEFAULT_GRIDLINE_STROKE">DEFAULT_GRIDLINE_STROKE</a></span></code>
  169. <div class="block">The default grid line stroke.</div>
  170. </td>
  171. </tr>
  172. <tr class="altColor">
  173. <td class="colFirst"><code>protected static java.util.ResourceBundle</code></td>
  174. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#localizationResources">localizationResources</a></span></code>
  175. <div class="block">The resourceBundle for the localization.</div>
  176. </td>
  177. </tr>
  178. </table>
  179. <ul class="blockList">
  180. <li class="blockList"><a name="fields.inherited.from.class.org.jfree.chart.plot.Plot">
  181. <!-- -->
  182. </a>
  183. <h3>Fields inherited from class&nbsp;org.jfree.chart.plot.<a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></h3>
  184. <code><a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_BACKGROUND_ALPHA">DEFAULT_BACKGROUND_ALPHA</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_BACKGROUND_PAINT">DEFAULT_BACKGROUND_PAINT</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_FOREGROUND_ALPHA">DEFAULT_FOREGROUND_ALPHA</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_INSETS">DEFAULT_INSETS</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_LEGEND_ITEM_BOX">DEFAULT_LEGEND_ITEM_BOX</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_LEGEND_ITEM_CIRCLE">DEFAULT_LEGEND_ITEM_CIRCLE</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_OUTLINE_PAINT">DEFAULT_OUTLINE_PAINT</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#DEFAULT_OUTLINE_STROKE">DEFAULT_OUTLINE_STROKE</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#MINIMUM_HEIGHT_TO_DRAW">MINIMUM_HEIGHT_TO_DRAW</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#MINIMUM_WIDTH_TO_DRAW">MINIMUM_WIDTH_TO_DRAW</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#ZERO">ZERO</a></code></li>
  185. </ul>
  186. </li>
  187. </ul>
  188. <!-- ======== CONSTRUCTOR SUMMARY ======== -->
  189. <ul class="blockList">
  190. <li class="blockList"><a name="constructor.summary">
  191. <!-- -->
  192. </a>
  193. <h3>Constructor Summary</h3>
  194. <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
  195. <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
  196. <tr>
  197. <th class="colOne" scope="col">Constructor and Description</th>
  198. </tr>
  199. <tr class="altColor">
  200. <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#PolarPlot--">PolarPlot</a></span>()</code>
  201. <div class="block">Default constructor.</div>
  202. </td>
  203. </tr>
  204. <tr class="rowColor">
  205. <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#PolarPlot-org.jfree.data.xy.XYDataset-org.jfree.chart.axis.ValueAxis-org.jfree.chart.renderer.PolarItemRenderer-">PolarPlot</a></span>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  206. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;radiusAxis,
  207. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</code>
  208. <div class="block">Creates a new plot.</div>
  209. </td>
  210. </tr>
  211. </table>
  212. </li>
  213. </ul>
  214. <!-- ========== METHOD SUMMARY =========== -->
  215. <ul class="blockList">
  216. <li class="blockList"><a name="method.summary">
  217. <!-- -->
  218. </a>
  219. <h3>Method Summary</h3>
  220. <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
  221. <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance 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><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
  222. <tr>
  223. <th class="colFirst" scope="col">Modifier and Type</th>
  224. <th class="colLast" scope="col">Method and Description</th>
  225. </tr>
  226. <tr id="i0" class="altColor">
  227. <td class="colFirst"><code>void</code></td>
  228. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#addCornerTextItem-java.lang.String-">addCornerTextItem</a></span>(java.lang.String&nbsp;text)</code>
  229. <div class="block">Add text to be displayed in the lower right hand corner and sends a
  230. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  231. </td>
  232. </tr>
  233. <tr id="i1" class="rowColor">
  234. <td class="colFirst"><code>protected java.util.List</code></td>
  235. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#buildRadialTicks-java.util.List-">buildRadialTicks</a></span>(java.util.List&nbsp;allTicks)</code>
  236. <div class="block">Create a list of ticks based on the given list and plot properties.</div>
  237. </td>
  238. </tr>
  239. <tr id="i2" class="altColor">
  240. <td class="colFirst"><code>protected org.jfree.ui.TextAnchor</code></td>
  241. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#calculateTextAnchor-double-">calculateTextAnchor</a></span>(double&nbsp;angleDegrees)</code>
  242. <div class="block">Calculate the text position for the given degrees.</div>
  243. </td>
  244. </tr>
  245. <tr id="i3" class="rowColor">
  246. <td class="colFirst"><code>void</code></td>
  247. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#clearCornerTextItems--">clearCornerTextItems</a></span>()</code>
  248. <div class="block">Clear the list of corner text items and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  249. to all registered listeners.</div>
  250. </td>
  251. </tr>
  252. <tr id="i4" class="altColor">
  253. <td class="colFirst"><code>java.lang.Object</code></td>
  254. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#clone--">clone</a></span>()</code>
  255. <div class="block">Returns a clone of the plot.</div>
  256. </td>
  257. </tr>
  258. <tr id="i5" class="rowColor">
  259. <td class="colFirst"><code>void</code></td>
  260. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#datasetChanged-org.jfree.data.general.DatasetChangeEvent-">datasetChanged</a></span>(<a href="../../../../org/jfree/data/general/DatasetChangeEvent.html" title="class in org.jfree.data.general">DatasetChangeEvent</a>&nbsp;event)</code>
  261. <div class="block">Receives notification of a change to the plot's m_Dataset.</div>
  262. </td>
  263. </tr>
  264. <tr id="i6" class="altColor">
  265. <td class="colFirst"><code>void</code></td>
  266. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#draw-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.awt.geom.Point2D-org.jfree.chart.plot.PlotState-org.jfree.chart.plot.PlotRenderingInfo-">draw</a></span>(java.awt.Graphics2D&nbsp;g2,
  267. java.awt.geom.Rectangle2D&nbsp;area,
  268. java.awt.geom.Point2D&nbsp;anchor,
  269. <a href="../../../../org/jfree/chart/plot/PlotState.html" title="class in org.jfree.chart.plot">PlotState</a>&nbsp;parentState,
  270. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info)</code>
  271. <div class="block">Draws the plot on a Java 2D graphics device (such as the screen or a
  272. printer).</div>
  273. </td>
  274. </tr>
  275. <tr id="i7" class="rowColor">
  276. <td class="colFirst"><code>protected <a href="../../../../org/jfree/chart/axis/AxisState.html" title="class in org.jfree.chart.axis">AxisState</a></code></td>
  277. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#drawAxis-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.awt.geom.Rectangle2D-">drawAxis</a></span>(java.awt.Graphics2D&nbsp;g2,
  278. java.awt.geom.Rectangle2D&nbsp;plotArea,
  279. java.awt.geom.Rectangle2D&nbsp;dataArea)</code>
  280. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
  281. <div class="block"><span class="deprecationComment">As of version 1.0.14, this method is no longer used.</span></div>
  282. </div>
  283. </td>
  284. </tr>
  285. <tr id="i8" class="altColor">
  286. <td class="colFirst"><code>protected <a href="../../../../org/jfree/chart/axis/AxisState.html" title="class in org.jfree.chart.axis">AxisState</a></code></td>
  287. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#drawAxis-org.jfree.chart.axis.ValueAxis-org.jfree.chart.plot.PolarAxisLocation-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawAxis</a></span>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  288. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  289. java.awt.Graphics2D&nbsp;g2,
  290. java.awt.geom.Rectangle2D&nbsp;plotArea)</code>
  291. <div class="block">Draws the axis with the specified index.</div>
  292. </td>
  293. </tr>
  294. <tr id="i9" class="rowColor">
  295. <td class="colFirst"><code>protected void</code></td>
  296. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#drawCornerTextItems-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawCornerTextItems</a></span>(java.awt.Graphics2D&nbsp;g2,
  297. java.awt.geom.Rectangle2D&nbsp;area)</code>
  298. <div class="block">Draws the corner text items.</div>
  299. </td>
  300. </tr>
  301. <tr id="i10" class="altColor">
  302. <td class="colFirst"><code>protected void</code></td>
  303. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#drawGridlines-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.util.List-java.util.List-">drawGridlines</a></span>(java.awt.Graphics2D&nbsp;g2,
  304. java.awt.geom.Rectangle2D&nbsp;dataArea,
  305. java.util.List&nbsp;angularTicks,
  306. java.util.List&nbsp;radialTicks)</code>
  307. <div class="block">Draws the gridlines for the plot, if they are visible.</div>
  308. </td>
  309. </tr>
  310. <tr id="i11" class="rowColor">
  311. <td class="colFirst"><code>boolean</code></td>
  312. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#equals-java.lang.Object-">equals</a></span>(java.lang.Object&nbsp;obj)</code>
  313. <div class="block">Tests this plot for equality with another object.</div>
  314. </td>
  315. </tr>
  316. <tr id="i12" class="altColor">
  317. <td class="colFirst"><code>java.awt.Paint</code></td>
  318. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleGridlinePaint--">getAngleGridlinePaint</a></span>()</code>
  319. <div class="block">Returns the paint for the grid lines (if any) plotted against the
  320. angular axis.</div>
  321. </td>
  322. </tr>
  323. <tr id="i13" class="rowColor">
  324. <td class="colFirst"><code>java.awt.Stroke</code></td>
  325. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleGridlineStroke--">getAngleGridlineStroke</a></span>()</code>
  326. <div class="block">Returns the stroke for the grid-lines (if any) plotted against the
  327. angular axis.</div>
  328. </td>
  329. </tr>
  330. <tr id="i14" class="altColor">
  331. <td class="colFirst"><code>java.awt.Font</code></td>
  332. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleLabelFont--">getAngleLabelFont</a></span>()</code>
  333. <div class="block">Returns the font used to display the angle labels.</div>
  334. </td>
  335. </tr>
  336. <tr id="i15" class="rowColor">
  337. <td class="colFirst"><code>java.awt.Paint</code></td>
  338. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleLabelPaint--">getAngleLabelPaint</a></span>()</code>
  339. <div class="block">Returns the paint used to display the angle labels.</div>
  340. </td>
  341. </tr>
  342. <tr id="i16" class="altColor">
  343. <td class="colFirst"><code>double</code></td>
  344. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleOffset--">getAngleOffset</a></span>()</code>
  345. <div class="block">Returns the offset that is used for all angles.</div>
  346. </td>
  347. </tr>
  348. <tr id="i17" class="rowColor">
  349. <td class="colFirst"><code><a href="../../../../org/jfree/chart/axis/TickUnit.html" title="class in org.jfree.chart.axis">TickUnit</a></code></td>
  350. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleTickUnit--">getAngleTickUnit</a></span>()</code>
  351. <div class="block">Returns the tick unit that controls the spacing of the angular grid
  352. lines.</div>
  353. </td>
  354. </tr>
  355. <tr id="i18" class="altColor">
  356. <td class="colFirst"><code><a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a></code></td>
  357. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis--">getAxis</a></span>()</code>
  358. <div class="block">Returns the primary axis for the plot.</div>
  359. </td>
  360. </tr>
  361. <tr id="i19" class="rowColor">
  362. <td class="colFirst"><code><a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a></code></td>
  363. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis-int-">getAxis</a></span>(int&nbsp;index)</code>
  364. <div class="block">Returns an axis for the plot.</div>
  365. </td>
  366. </tr>
  367. <tr id="i20" class="altColor">
  368. <td class="colFirst"><code>int</code></td>
  369. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisCount--">getAxisCount</a></span>()</code>
  370. <div class="block">Returns the number of domain axes.</div>
  371. </td>
  372. </tr>
  373. <tr id="i21" class="rowColor">
  374. <td class="colFirst"><code><a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a></code></td>
  375. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisForDataset-int-">getAxisForDataset</a></span>(int&nbsp;index)</code>
  376. <div class="block">Returns the axis for a dataset.</div>
  377. </td>
  378. </tr>
  379. <tr id="i22" class="altColor">
  380. <td class="colFirst"><code>int</code></td>
  381. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisIndex-org.jfree.chart.axis.ValueAxis-">getAxisIndex</a></span>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</code>
  382. <div class="block">Returns the index of the given axis.</div>
  383. </td>
  384. </tr>
  385. <tr id="i23" class="rowColor">
  386. <td class="colFirst"><code><a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a></code></td>
  387. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisLocation--">getAxisLocation</a></span>()</code>
  388. <div class="block">Returns the location of the primary axis.</div>
  389. </td>
  390. </tr>
  391. <tr id="i24" class="altColor">
  392. <td class="colFirst"><code><a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a></code></td>
  393. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisLocation-int-">getAxisLocation</a></span>(int&nbsp;index)</code>
  394. <div class="block">Returns the location for an axis.</div>
  395. </td>
  396. </tr>
  397. <tr id="i25" class="rowColor">
  398. <td class="colFirst"><code><a href="../../../../org/jfree/data/Range.html" title="class in org.jfree.data">Range</a></code></td>
  399. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDataRange-org.jfree.chart.axis.ValueAxis-">getDataRange</a></span>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</code>
  400. <div class="block">Returns the range for the specified axis.</div>
  401. </td>
  402. </tr>
  403. <tr id="i26" class="altColor">
  404. <td class="colFirst"><code><a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a></code></td>
  405. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDataset--">getDataset</a></span>()</code>
  406. <div class="block">Returns the primary dataset for the plot.</div>
  407. </td>
  408. </tr>
  409. <tr id="i27" class="rowColor">
  410. <td class="colFirst"><code><a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a></code></td>
  411. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDataset-int-">getDataset</a></span>(int&nbsp;index)</code>
  412. <div class="block">Returns the dataset with the specified index, if any.</div>
  413. </td>
  414. </tr>
  415. <tr id="i28" class="altColor">
  416. <td class="colFirst"><code>int</code></td>
  417. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDatasetCount--">getDatasetCount</a></span>()</code>
  418. <div class="block">Returns the number of datasets.</div>
  419. </td>
  420. </tr>
  421. <tr id="i29" class="rowColor">
  422. <td class="colFirst"><code><a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a></code></td>
  423. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getFixedLegendItems--">getFixedLegendItems</a></span>()</code>
  424. <div class="block">Returns the fixed legend items, if any.</div>
  425. </td>
  426. </tr>
  427. <tr id="i30" class="altColor">
  428. <td class="colFirst"><code>int</code></td>
  429. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getIndexOf-org.jfree.chart.renderer.PolarItemRenderer-">getIndexOf</a></span>(<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</code>
  430. <div class="block">Returns the index of the specified renderer, or <code>-1</code> if the
  431. renderer is not assigned to this plot.</div>
  432. </td>
  433. </tr>
  434. <tr id="i31" class="rowColor">
  435. <td class="colFirst"><code><a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a></code></td>
  436. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getLegendItems--">getLegendItems</a></span>()</code>
  437. <div class="block">Returns the legend items for the plot.</div>
  438. </td>
  439. </tr>
  440. <tr id="i32" class="altColor">
  441. <td class="colFirst"><code>int</code></td>
  442. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getMargin--">getMargin</a></span>()</code>
  443. <div class="block">Returns the margin around the plot area.</div>
  444. </td>
  445. </tr>
  446. <tr id="i33" class="rowColor">
  447. <td class="colFirst"><code>double</code></td>
  448. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getMaxRadius--">getMaxRadius</a></span>()</code>
  449. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
  450. <div class="block"><span class="deprecationComment">Since 1.0.14, use <a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis--"><code>getAxis()</code></a> and call the
  451. getUpperBound() method.</span></div>
  452. </div>
  453. </td>
  454. </tr>
  455. <tr id="i34" class="altColor">
  456. <td class="colFirst"><code><a href="../../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a></code></td>
  457. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getOrientation--">getOrientation</a></span>()</code>
  458. <div class="block">Returns the orientation of the plot.</div>
  459. </td>
  460. </tr>
  461. <tr id="i35" class="rowColor">
  462. <td class="colFirst"><code>java.lang.String</code></td>
  463. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getPlotType--">getPlotType</a></span>()</code>
  464. <div class="block">Returns the plot type as a string.</div>
  465. </td>
  466. </tr>
  467. <tr id="i36" class="altColor">
  468. <td class="colFirst"><code>java.awt.Paint</code></td>
  469. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRadiusGridlinePaint--">getRadiusGridlinePaint</a></span>()</code>
  470. <div class="block">Returns the paint for the grid lines (if any) plotted against the radius
  471. axis.</div>
  472. </td>
  473. </tr>
  474. <tr id="i37" class="rowColor">
  475. <td class="colFirst"><code>java.awt.Stroke</code></td>
  476. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRadiusGridlineStroke--">getRadiusGridlineStroke</a></span>()</code>
  477. <div class="block">Returns the stroke for the grid lines (if any) plotted against the
  478. radius axis.</div>
  479. </td>
  480. </tr>
  481. <tr id="i38" class="altColor">
  482. <td class="colFirst"><code><a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a></code></td>
  483. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRenderer--">getRenderer</a></span>()</code>
  484. <div class="block">Returns the primary renderer.</div>
  485. </td>
  486. </tr>
  487. <tr id="i39" class="rowColor">
  488. <td class="colFirst"><code><a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a></code></td>
  489. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRenderer-int-">getRenderer</a></span>(int&nbsp;index)</code>
  490. <div class="block">Returns the renderer at the specified index, if there is one.</div>
  491. </td>
  492. </tr>
  493. <tr id="i40" class="altColor">
  494. <td class="colFirst"><code>int</code></td>
  495. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getSeriesCount--">getSeriesCount</a></span>()</code>
  496. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
  497. <div class="block"><span class="deprecationComment">Since 1.0.14, grab a reference to the dataset and check
  498. the series count directly.</span></div>
  499. </div>
  500. </td>
  501. </tr>
  502. <tr id="i41" class="rowColor">
  503. <td class="colFirst"><code>int</code></td>
  504. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#indexOf-org.jfree.data.xy.XYDataset-">indexOf</a></span>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  505. <div class="block">Returns the index of the specified dataset, or <code>-1</code> if the
  506. dataset does not belong to the plot.</div>
  507. </td>
  508. </tr>
  509. <tr id="i42" class="altColor">
  510. <td class="colFirst"><code>boolean</code></td>
  511. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isAngleGridlinesVisible--">isAngleGridlinesVisible</a></span>()</code>
  512. <div class="block">Returns <code>true</code> if the angular gridlines are visible, and
  513. <code>false</code> otherwise.</div>
  514. </td>
  515. </tr>
  516. <tr id="i43" class="rowColor">
  517. <td class="colFirst"><code>boolean</code></td>
  518. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isAngleLabelsVisible--">isAngleLabelsVisible</a></span>()</code>
  519. <div class="block">Returns a flag that controls whether or not the angle labels are visible.</div>
  520. </td>
  521. </tr>
  522. <tr id="i44" class="altColor">
  523. <td class="colFirst"><code>boolean</code></td>
  524. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isCounterClockwise--">isCounterClockwise</a></span>()</code>
  525. <div class="block">Get the direction for growing angle degrees.</div>
  526. </td>
  527. </tr>
  528. <tr id="i45" class="rowColor">
  529. <td class="colFirst"><code>boolean</code></td>
  530. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isDomainZoomable--">isDomainZoomable</a></span>()</code>
  531. <div class="block">Returns <code>false</code> always.</div>
  532. </td>
  533. </tr>
  534. <tr id="i46" class="altColor">
  535. <td class="colFirst"><code>boolean</code></td>
  536. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isRadiusGridlinesVisible--">isRadiusGridlinesVisible</a></span>()</code>
  537. <div class="block">Returns <code>true</code> if the radius axis grid is visible, and
  538. <code>false</code> otherwise.</div>
  539. </td>
  540. </tr>
  541. <tr id="i47" class="rowColor">
  542. <td class="colFirst"><code>boolean</code></td>
  543. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isRadiusMinorGridlinesVisible--">isRadiusMinorGridlinesVisible</a></span>()</code>
  544. <div class="block">Return the current value of the flag indicating if radial minor
  545. grid-lines will be drawn or not.</div>
  546. </td>
  547. </tr>
  548. <tr id="i48" class="altColor">
  549. <td class="colFirst"><code>boolean</code></td>
  550. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isRangeZoomable--">isRangeZoomable</a></span>()</code>
  551. <div class="block">Returns <code>true</code> to indicate that the range axis is zoomable.</div>
  552. </td>
  553. </tr>
  554. <tr id="i49" class="rowColor">
  555. <td class="colFirst"><code>void</code></td>
  556. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#mapDatasetToAxes-int-java.util.List-">mapDatasetToAxes</a></span>(int&nbsp;index,
  557. java.util.List&nbsp;axisIndices)</code>
  558. <div class="block">Maps the specified dataset to the axes in the list.</div>
  559. </td>
  560. </tr>
  561. <tr id="i50" class="altColor">
  562. <td class="colFirst"><code>void</code></td>
  563. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#mapDatasetToAxis-int-int-">mapDatasetToAxis</a></span>(int&nbsp;index,
  564. int&nbsp;axisIndex)</code>
  565. <div class="block">Maps a dataset to a particular axis.</div>
  566. </td>
  567. </tr>
  568. <tr id="i51" class="rowColor">
  569. <td class="colFirst"><code>protected java.util.List</code></td>
  570. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#refreshAngleTicks--">refreshAngleTicks</a></span>()</code>
  571. <div class="block">Generates a list of tick values for the angular tick marks.</div>
  572. </td>
  573. </tr>
  574. <tr id="i52" class="altColor">
  575. <td class="colFirst"><code>void</code></td>
  576. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#removeCornerTextItem-java.lang.String-">removeCornerTextItem</a></span>(java.lang.String&nbsp;text)</code>
  577. <div class="block">Remove the given text from the list of corner text items and
  578. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  579. </td>
  580. </tr>
  581. <tr id="i53" class="rowColor">
  582. <td class="colFirst"><code>protected void</code></td>
  583. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#render-java.awt.Graphics2D-java.awt.geom.Rectangle2D-org.jfree.chart.plot.PlotRenderingInfo-">render</a></span>(java.awt.Graphics2D&nbsp;g2,
  584. java.awt.geom.Rectangle2D&nbsp;dataArea,
  585. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info)</code>
  586. <div class="block">Draws a representation of the data within the dataArea region, using the
  587. current m_Renderer.</div>
  588. </td>
  589. </tr>
  590. <tr id="i54" class="altColor">
  591. <td class="colFirst"><code>void</code></td>
  592. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#rendererChanged-org.jfree.chart.event.RendererChangeEvent-">rendererChanged</a></span>(<a href="../../../../org/jfree/chart/event/RendererChangeEvent.html" title="class in org.jfree.chart.event">RendererChangeEvent</a>&nbsp;event)</code>
  593. <div class="block">Notifies all registered listeners of a property change.</div>
  594. </td>
  595. </tr>
  596. <tr id="i55" class="rowColor">
  597. <td class="colFirst"><code>void</code></td>
  598. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlinePaint-java.awt.Paint-">setAngleGridlinePaint</a></span>(java.awt.Paint&nbsp;paint)</code>
  599. <div class="block">Sets the paint for the grid lines plotted against the angular axis.</div>
  600. </td>
  601. </tr>
  602. <tr id="i56" class="altColor">
  603. <td class="colFirst"><code>void</code></td>
  604. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlineStroke-java.awt.Stroke-">setAngleGridlineStroke</a></span>(java.awt.Stroke&nbsp;stroke)</code>
  605. <div class="block">Sets the stroke for the grid lines plotted against the angular axis and
  606. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  607. </td>
  608. </tr>
  609. <tr id="i57" class="rowColor">
  610. <td class="colFirst"><code>void</code></td>
  611. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlinesVisible-boolean-">setAngleGridlinesVisible</a></span>(boolean&nbsp;visible)</code>
  612. <div class="block">Sets the flag that controls whether or not the angular grid-lines are
  613. visible.</div>
  614. </td>
  615. </tr>
  616. <tr id="i58" class="altColor">
  617. <td class="colFirst"><code>void</code></td>
  618. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelFont-java.awt.Font-">setAngleLabelFont</a></span>(java.awt.Font&nbsp;font)</code>
  619. <div class="block">Sets the font used to display the angle labels and sends a
  620. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  621. </td>
  622. </tr>
  623. <tr id="i59" class="rowColor">
  624. <td class="colFirst"><code>void</code></td>
  625. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelPaint-java.awt.Paint-">setAngleLabelPaint</a></span>(java.awt.Paint&nbsp;paint)</code>
  626. <div class="block">Sets the paint used to display the angle labels and sends a
  627. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  628. </td>
  629. </tr>
  630. <tr id="i60" class="altColor">
  631. <td class="colFirst"><code>void</code></td>
  632. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelsVisible-boolean-">setAngleLabelsVisible</a></span>(boolean&nbsp;visible)</code>
  633. <div class="block">Sets the flag that controls whether or not the angle labels are visible,
  634. and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  635. </td>
  636. </tr>
  637. <tr id="i61" class="rowColor">
  638. <td class="colFirst"><code>void</code></td>
  639. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleOffset-double-">setAngleOffset</a></span>(double&nbsp;offset)</code>
  640. <div class="block">Sets the offset that is used for all angles and sends a
  641. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  642. </td>
  643. </tr>
  644. <tr id="i62" class="altColor">
  645. <td class="colFirst"><code>void</code></td>
  646. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleTickUnit-org.jfree.chart.axis.TickUnit-">setAngleTickUnit</a></span>(<a href="../../../../org/jfree/chart/axis/TickUnit.html" title="class in org.jfree.chart.axis">TickUnit</a>&nbsp;unit)</code>
  647. <div class="block">Sets the tick unit that controls the spacing of the angular grid
  648. lines, and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  649. </td>
  650. </tr>
  651. <tr id="i63" class="rowColor">
  652. <td class="colFirst"><code>void</code></td>
  653. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxis-int-org.jfree.chart.axis.ValueAxis-">setAxis</a></span>(int&nbsp;index,
  654. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</code>
  655. <div class="block">Sets an axis for the plot and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all
  656. registered listeners.</div>
  657. </td>
  658. </tr>
  659. <tr id="i64" class="altColor">
  660. <td class="colFirst"><code>void</code></td>
  661. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxis-int-org.jfree.chart.axis.ValueAxis-boolean-">setAxis</a></span>(int&nbsp;index,
  662. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  663. boolean&nbsp;notify)</code>
  664. <div class="block">Sets an axis for the plot and, if requested, sends a
  665. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  666. </td>
  667. </tr>
  668. <tr id="i65" class="rowColor">
  669. <td class="colFirst"><code>void</code></td>
  670. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxis-org.jfree.chart.axis.ValueAxis-">setAxis</a></span>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</code>
  671. <div class="block">Sets the primary axis for the plot and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  672. to all registered listeners.</div>
  673. </td>
  674. </tr>
  675. <tr id="i66" class="altColor">
  676. <td class="colFirst"><code>void</code></td>
  677. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-int-org.jfree.chart.plot.PolarAxisLocation-">setAxisLocation</a></span>(int&nbsp;index,
  678. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location)</code>
  679. <div class="block">Sets the location for an axis and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  680. to all registered listeners.</div>
  681. </td>
  682. </tr>
  683. <tr id="i67" class="rowColor">
  684. <td class="colFirst"><code>void</code></td>
  685. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-int-org.jfree.chart.plot.PolarAxisLocation-boolean-">setAxisLocation</a></span>(int&nbsp;index,
  686. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  687. boolean&nbsp;notify)</code>
  688. <div class="block">Sets the axis location for an axis and, if requested, sends a
  689. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  690. </td>
  691. </tr>
  692. <tr id="i68" class="altColor">
  693. <td class="colFirst"><code>void</code></td>
  694. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-org.jfree.chart.plot.PolarAxisLocation-">setAxisLocation</a></span>(<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location)</code>
  695. <div class="block">Sets the location of the primary axis and sends a
  696. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  697. </td>
  698. </tr>
  699. <tr id="i69" class="rowColor">
  700. <td class="colFirst"><code>void</code></td>
  701. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-org.jfree.chart.plot.PolarAxisLocation-boolean-">setAxisLocation</a></span>(<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  702. boolean&nbsp;notify)</code>
  703. <div class="block">Sets the location of the primary axis and, if requested, sends a
  704. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  705. </td>
  706. </tr>
  707. <tr id="i70" class="altColor">
  708. <td class="colFirst"><code>void</code></td>
  709. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setCounterClockwise-boolean-">setCounterClockwise</a></span>(boolean&nbsp;counterClockwise)</code>
  710. <div class="block">Sets the flag for increasing angle degrees direction.</div>
  711. </td>
  712. </tr>
  713. <tr id="i71" class="rowColor">
  714. <td class="colFirst"><code>void</code></td>
  715. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setDataset-int-org.jfree.data.xy.XYDataset-">setDataset</a></span>(int&nbsp;index,
  716. <a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  717. <div class="block">Sets a dataset for the plot, replacing the existing dataset at the same
  718. index if there is one, and sends a <code>link PlotChangeEvent</code> to all
  719. registered listeners.</div>
  720. </td>
  721. </tr>
  722. <tr id="i72" class="altColor">
  723. <td class="colFirst"><code>void</code></td>
  724. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setDataset-org.jfree.data.xy.XYDataset-">setDataset</a></span>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</code>
  725. <div class="block">Sets the primary dataset for the plot, replacing the existing dataset
  726. if there is one, and sends a <code>link PlotChangeEvent</code> to all
  727. registered listeners.</div>
  728. </td>
  729. </tr>
  730. <tr id="i73" class="rowColor">
  731. <td class="colFirst"><code>void</code></td>
  732. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setFixedLegendItems-org.jfree.chart.LegendItemCollection-">setFixedLegendItems</a></span>(<a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a>&nbsp;items)</code>
  733. <div class="block">Sets the fixed legend items for the plot.</div>
  734. </td>
  735. </tr>
  736. <tr id="i74" class="altColor">
  737. <td class="colFirst"><code>void</code></td>
  738. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setMargin-int-">setMargin</a></span>(int&nbsp;margin)</code>
  739. <div class="block">Set the margin around the plot area and sends a
  740. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  741. </td>
  742. </tr>
  743. <tr id="i75" class="rowColor">
  744. <td class="colFirst"><code>void</code></td>
  745. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlinePaint-java.awt.Paint-">setRadiusGridlinePaint</a></span>(java.awt.Paint&nbsp;paint)</code>
  746. <div class="block">Sets the paint for the grid lines plotted against the radius axis and
  747. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  748. </td>
  749. </tr>
  750. <tr id="i76" class="altColor">
  751. <td class="colFirst"><code>void</code></td>
  752. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlineStroke-java.awt.Stroke-">setRadiusGridlineStroke</a></span>(java.awt.Stroke&nbsp;stroke)</code>
  753. <div class="block">Sets the stroke for the grid lines plotted against the radius axis and
  754. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  755. </td>
  756. </tr>
  757. <tr id="i77" class="rowColor">
  758. <td class="colFirst"><code>void</code></td>
  759. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlinesVisible-boolean-">setRadiusGridlinesVisible</a></span>(boolean&nbsp;visible)</code>
  760. <div class="block">Sets the flag that controls whether or not the radius axis grid lines
  761. are visible.</div>
  762. </td>
  763. </tr>
  764. <tr id="i78" class="altColor">
  765. <td class="colFirst"><code>void</code></td>
  766. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusMinorGridlinesVisible-boolean-">setRadiusMinorGridlinesVisible</a></span>(boolean&nbsp;flag)</code>
  767. <div class="block">Set the flag that determines if radial minor grid-lines will be drawn,
  768. and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  769. </td>
  770. </tr>
  771. <tr id="i79" class="rowColor">
  772. <td class="colFirst"><code>void</code></td>
  773. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRenderer-int-org.jfree.chart.renderer.PolarItemRenderer-">setRenderer</a></span>(int&nbsp;index,
  774. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</code>
  775. <div class="block">Sets a renderer and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all
  776. registered listeners.</div>
  777. </td>
  778. </tr>
  779. <tr id="i80" class="altColor">
  780. <td class="colFirst"><code>void</code></td>
  781. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRenderer-int-org.jfree.chart.renderer.PolarItemRenderer-boolean-">setRenderer</a></span>(int&nbsp;index,
  782. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer,
  783. boolean&nbsp;notify)</code>
  784. <div class="block">Sets a renderer and, if requested, sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to
  785. all registered listeners.</div>
  786. </td>
  787. </tr>
  788. <tr id="i81" class="rowColor">
  789. <td class="colFirst"><code>void</code></td>
  790. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRenderer-org.jfree.chart.renderer.PolarItemRenderer-">setRenderer</a></span>(<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</code>
  791. <div class="block">Sets the primary renderer, and notifies all listeners of a change to the
  792. plot.</div>
  793. </td>
  794. </tr>
  795. <tr id="i82" class="altColor">
  796. <td class="colFirst"><code>java.awt.Point</code></td>
  797. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#translateToJava2D-double-double-org.jfree.chart.axis.ValueAxis-java.awt.geom.Rectangle2D-">translateToJava2D</a></span>(double&nbsp;angleDegrees,
  798. double&nbsp;radius,
  799. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  800. java.awt.geom.Rectangle2D&nbsp;dataArea)</code>
  801. <div class="block">Translates a (theta, radius) pair into Java2D coordinates.</div>
  802. </td>
  803. </tr>
  804. <tr id="i83" class="rowColor">
  805. <td class="colFirst"><code>java.awt.Point</code></td>
  806. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#translateValueThetaRadiusToJava2D-double-double-java.awt.geom.Rectangle2D-">translateValueThetaRadiusToJava2D</a></span>(double&nbsp;angleDegrees,
  807. double&nbsp;radius,
  808. java.awt.geom.Rectangle2D&nbsp;dataArea)</code>
  809. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
  810. <div class="block"><span class="deprecationComment">Since 1.0.14, use <a href="../../../../org/jfree/chart/plot/PolarPlot.html#translateToJava2D-double-double-org.jfree.chart.axis.ValueAxis-java.awt.geom.Rectangle2D-"><code>translateToJava2D(double, double,
  811. org.jfree.chart.axis.ValueAxis, java.awt.geom.Rectangle2D)</code></a> instead.</span></div>
  812. </div>
  813. </td>
  814. </tr>
  815. <tr id="i84" class="altColor">
  816. <td class="colFirst"><code>void</code></td>
  817. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoom-double-">zoom</a></span>(double&nbsp;percent)</code>
  818. <div class="block">Zooms the axis ranges by the specified percentage about the anchor point.</div>
  819. </td>
  820. </tr>
  821. <tr id="i85" class="rowColor">
  822. <td class="colFirst"><code>void</code></td>
  823. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomDomainAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomDomainAxes</a></span>(double&nbsp;lowerPercent,
  824. double&nbsp;upperPercent,
  825. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  826. java.awt.geom.Point2D&nbsp;source)</code>
  827. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  828. the plot does not have any domain axes, it does nothing.</div>
  829. </td>
  830. </tr>
  831. <tr id="i86" class="altColor">
  832. <td class="colFirst"><code>void</code></td>
  833. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomDomainAxes</a></span>(double&nbsp;factor,
  834. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  835. java.awt.geom.Point2D&nbsp;source)</code>
  836. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  837. the plot does not have any domain axes, it does nothing.</div>
  838. </td>
  839. </tr>
  840. <tr id="i87" class="rowColor">
  841. <td class="colFirst"><code>void</code></td>
  842. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">zoomDomainAxes</a></span>(double&nbsp;factor,
  843. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  844. java.awt.geom.Point2D&nbsp;source,
  845. boolean&nbsp;useAnchor)</code>
  846. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  847. the plot does not have any domain axes, it does nothing.</div>
  848. </td>
  849. </tr>
  850. <tr id="i88" class="altColor">
  851. <td class="colFirst"><code>void</code></td>
  852. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomRangeAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomRangeAxes</a></span>(double&nbsp;lowerPercent,
  853. double&nbsp;upperPercent,
  854. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  855. java.awt.geom.Point2D&nbsp;source)</code>
  856. <div class="block">Zooms in on the range axes.</div>
  857. </td>
  858. </tr>
  859. <tr id="i89" class="rowColor">
  860. <td class="colFirst"><code>void</code></td>
  861. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomRangeAxes</a></span>(double&nbsp;factor,
  862. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  863. java.awt.geom.Point2D&nbsp;source)</code>
  864. <div class="block">Multiplies the range on the range axis/axes by the specified factor.</div>
  865. </td>
  866. </tr>
  867. <tr id="i90" class="altColor">
  868. <td class="colFirst"><code>void</code></td>
  869. <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">zoomRangeAxes</a></span>(double&nbsp;factor,
  870. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info,
  871. java.awt.geom.Point2D&nbsp;source,
  872. boolean&nbsp;useAnchor)</code>
  873. <div class="block">Multiplies the range on the range axis by the specified factor.</div>
  874. </td>
  875. </tr>
  876. </table>
  877. <ul class="blockList">
  878. <li class="blockList"><a name="methods.inherited.from.class.org.jfree.chart.plot.Plot">
  879. <!-- -->
  880. </a>
  881. <h3>Methods inherited from class&nbsp;org.jfree.chart.plot.<a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></h3>
  882. <code><a href="../../../../org/jfree/chart/plot/Plot.html#addChangeListener-org.jfree.chart.event.PlotChangeListener-">addChangeListener</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#annotationChanged-org.jfree.chart.event.AnnotationChangeEvent-">annotationChanged</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#axisChanged-org.jfree.chart.event.AxisChangeEvent-">axisChanged</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#createAndAddEntity-java.awt.geom.Rectangle2D-org.jfree.chart.plot.PlotRenderingInfo-java.lang.String-java.lang.String-">createAndAddEntity</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#drawBackground-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawBackground</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#drawBackgroundImage-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawBackgroundImage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#drawNoDataMessage-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawNoDataMessage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#drawOutline-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">drawOutline</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#fillBackground-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">fillBackground</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#fillBackground-java.awt.Graphics2D-java.awt.geom.Rectangle2D-org.jfree.chart.plot.PlotOrientation-">fillBackground</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#fireChangeEvent--">fireChangeEvent</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getBackgroundAlpha--">getBackgroundAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getBackgroundImage--">getBackgroundImage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getBackgroundImageAlignment--">getBackgroundImageAlignment</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getBackgroundImageAlpha--">getBackgroundImageAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getBackgroundPaint--">getBackgroundPaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getDatasetGroup--">getDatasetGroup</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getDrawingSupplier--">getDrawingSupplier</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getForegroundAlpha--">getForegroundAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getInsets--">getInsets</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getNoDataMessage--">getNoDataMessage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getNoDataMessageFont--">getNoDataMessageFont</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getNoDataMessagePaint--">getNoDataMessagePaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getOutlinePaint--">getOutlinePaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getOutlineStroke--">getOutlineStroke</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getParent--">getParent</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getRectX-double-double-double-org.jfree.ui.RectangleEdge-">getRectX</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getRectY-double-double-double-org.jfree.ui.RectangleEdge-">getRectY</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#getRootPlot--">getRootPlot</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#handleClick-int-int-org.jfree.chart.plot.PlotRenderingInfo-">handleClick</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#isNotify--">isNotify</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#isOutlineVisible--">isOutlineVisible</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#isSubplot--">isSubplot</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#markerChanged-org.jfree.chart.event.MarkerChangeEvent-">markerChanged</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#notifyListeners-org.jfree.chart.event.PlotChangeEvent-">notifyListeners</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#removeChangeListener-org.jfree.chart.event.PlotChangeListener-">removeChangeListener</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#resolveDomainAxisLocation-org.jfree.chart.axis.AxisLocation-org.jfree.chart.plot.PlotOrientation-">resolveDomainAxisLocation</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#resolveRangeAxisLocation-org.jfree.chart.axis.AxisLocation-org.jfree.chart.plot.PlotOrientation-">resolveRangeAxisLocation</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setBackgroundAlpha-float-">setBackgroundAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setBackgroundImage-java.awt.Image-">setBackgroundImage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setBackgroundImageAlignment-int-">setBackgroundImageAlignment</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setBackgroundImageAlpha-float-">setBackgroundImageAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setBackgroundPaint-java.awt.Paint-">setBackgroundPaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setDatasetGroup-org.jfree.data.general.DatasetGroup-">setDatasetGroup</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setDrawingSupplier-org.jfree.chart.plot.DrawingSupplier-">setDrawingSupplier</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setDrawingSupplier-org.jfree.chart.plot.DrawingSupplier-boolean-">setDrawingSupplier</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setForegroundAlpha-float-">setForegroundAlpha</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setInsets-org.jfree.ui.RectangleInsets-">setInsets</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setInsets-org.jfree.ui.RectangleInsets-boolean-">setInsets</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setNoDataMessage-java.lang.String-">setNoDataMessage</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setNoDataMessageFont-java.awt.Font-">setNoDataMessageFont</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setNoDataMessagePaint-java.awt.Paint-">setNoDataMessagePaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setNotify-boolean-">setNotify</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setOutlinePaint-java.awt.Paint-">setOutlinePaint</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setOutlineStroke-java.awt.Stroke-">setOutlineStroke</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setOutlineVisible-boolean-">setOutlineVisible</a>, <a href="../../../../org/jfree/chart/plot/Plot.html#setParent-org.jfree.chart.plot.Plot-">setParent</a></code></li>
  883. </ul>
  884. <ul class="blockList">
  885. <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
  886. <!-- -->
  887. </a>
  888. <h3>Methods inherited from class&nbsp;java.lang.Object</h3>
  889. <code>finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
  890. </ul>
  891. </li>
  892. </ul>
  893. </li>
  894. </ul>
  895. </div>
  896. <div class="details">
  897. <ul class="blockList">
  898. <li class="blockList">
  899. <!-- ============ FIELD DETAIL =========== -->
  900. <ul class="blockList">
  901. <li class="blockList"><a name="field.detail">
  902. <!-- -->
  903. </a>
  904. <h3>Field Detail</h3>
  905. <a name="DEFAULT_ANGLE_TICK_UNIT_SIZE">
  906. <!-- -->
  907. </a>
  908. <ul class="blockList">
  909. <li class="blockList">
  910. <h4>DEFAULT_ANGLE_TICK_UNIT_SIZE</h4>
  911. <pre>public static final&nbsp;double <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.142">DEFAULT_ANGLE_TICK_UNIT_SIZE</a></pre>
  912. <div class="block">The default angle tick unit size.</div>
  913. <dl>
  914. <dt><span class="simpleTagLabel">Since:</span></dt>
  915. <dd>1.0.10</dd>
  916. <dt><span class="seeLabel">See Also:</span></dt>
  917. <dd><a href="../../../../constant-values.html#org.jfree.chart.plot.PolarPlot.DEFAULT_ANGLE_TICK_UNIT_SIZE">Constant Field Values</a></dd>
  918. </dl>
  919. </li>
  920. </ul>
  921. <a name="DEFAULT_ANGLE_OFFSET">
  922. <!-- -->
  923. </a>
  924. <ul class="blockList">
  925. <li class="blockList">
  926. <h4>DEFAULT_ANGLE_OFFSET</h4>
  927. <pre>public static final&nbsp;double <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.149">DEFAULT_ANGLE_OFFSET</a></pre>
  928. <div class="block">The default angle offset.</div>
  929. <dl>
  930. <dt><span class="simpleTagLabel">Since:</span></dt>
  931. <dd>1.0.14</dd>
  932. <dt><span class="seeLabel">See Also:</span></dt>
  933. <dd><a href="../../../../constant-values.html#org.jfree.chart.plot.PolarPlot.DEFAULT_ANGLE_OFFSET">Constant Field Values</a></dd>
  934. </dl>
  935. </li>
  936. </ul>
  937. <a name="DEFAULT_GRIDLINE_STROKE">
  938. <!-- -->
  939. </a>
  940. <ul class="blockList">
  941. <li class="blockList">
  942. <h4>DEFAULT_GRIDLINE_STROKE</h4>
  943. <pre>public static final&nbsp;java.awt.Stroke <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.152">DEFAULT_GRIDLINE_STROKE</a></pre>
  944. <div class="block">The default grid line stroke.</div>
  945. </li>
  946. </ul>
  947. <a name="DEFAULT_GRIDLINE_PAINT">
  948. <!-- -->
  949. </a>
  950. <ul class="blockList">
  951. <li class="blockList">
  952. <h4>DEFAULT_GRIDLINE_PAINT</h4>
  953. <pre>public static final&nbsp;java.awt.Paint <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.157">DEFAULT_GRIDLINE_PAINT</a></pre>
  954. <div class="block">The default grid line paint.</div>
  955. </li>
  956. </ul>
  957. <a name="localizationResources">
  958. <!-- -->
  959. </a>
  960. <ul class="blockListLast">
  961. <li class="blockList">
  962. <h4>localizationResources</h4>
  963. <pre>protected static&nbsp;java.util.ResourceBundle <a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.160">localizationResources</a></pre>
  964. <div class="block">The resourceBundle for the localization.</div>
  965. </li>
  966. </ul>
  967. </li>
  968. </ul>
  969. <!-- ========= CONSTRUCTOR DETAIL ======== -->
  970. <ul class="blockList">
  971. <li class="blockList"><a name="constructor.detail">
  972. <!-- -->
  973. </a>
  974. <h3>Constructor Detail</h3>
  975. <a name="PolarPlot--">
  976. <!-- -->
  977. </a>
  978. <ul class="blockList">
  979. <li class="blockList">
  980. <h4>PolarPlot</h4>
  981. <pre>public&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.263">PolarPlot</a>()</pre>
  982. <div class="block">Default constructor.</div>
  983. </li>
  984. </ul>
  985. <a name="PolarPlot-org.jfree.data.xy.XYDataset-org.jfree.chart.axis.ValueAxis-org.jfree.chart.renderer.PolarItemRenderer-">
  986. <!-- -->
  987. </a>
  988. <ul class="blockListLast">
  989. <li class="blockList">
  990. <h4>PolarPlot</h4>
  991. <pre>public&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.274">PolarPlot</a>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset,
  992. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;radiusAxis,
  993. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</pre>
  994. <div class="block">Creates a new plot.</div>
  995. <dl>
  996. <dt><span class="paramLabel">Parameters:</span></dt>
  997. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  998. <dd><code>radiusAxis</code> - the radius axis (<code>null</code> permitted).</dd>
  999. <dd><code>renderer</code> - the renderer (<code>null</code> permitted).</dd>
  1000. </dl>
  1001. </li>
  1002. </ul>
  1003. </li>
  1004. </ul>
  1005. <!-- ============ METHOD DETAIL ========== -->
  1006. <ul class="blockList">
  1007. <li class="blockList"><a name="method.detail">
  1008. <!-- -->
  1009. </a>
  1010. <h3>Method Detail</h3>
  1011. <a name="getPlotType--">
  1012. <!-- -->
  1013. </a>
  1014. <ul class="blockList">
  1015. <li class="blockList">
  1016. <h4>getPlotType</h4>
  1017. <pre>public&nbsp;java.lang.String&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.331">getPlotType</a>()</pre>
  1018. <div class="block">Returns the plot type as a string.</div>
  1019. <dl>
  1020. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  1021. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#getPlotType--">getPlotType</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  1022. <dt><span class="returnLabel">Returns:</span></dt>
  1023. <dd>A short string describing the type of plot.</dd>
  1024. </dl>
  1025. </li>
  1026. </ul>
  1027. <a name="getAxis--">
  1028. <!-- -->
  1029. </a>
  1030. <ul class="blockList">
  1031. <li class="blockList">
  1032. <h4>getAxis</h4>
  1033. <pre>public&nbsp;<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.342">getAxis</a>()</pre>
  1034. <div class="block">Returns the primary axis for the plot.</div>
  1035. <dl>
  1036. <dt><span class="returnLabel">Returns:</span></dt>
  1037. <dd>The primary axis (possibly <code>null</code>).</dd>
  1038. <dt><span class="seeLabel">See Also:</span></dt>
  1039. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxis-org.jfree.chart.axis.ValueAxis-"><code>setAxis(ValueAxis)</code></a></dd>
  1040. </dl>
  1041. </li>
  1042. </ul>
  1043. <a name="getAxis-int-">
  1044. <!-- -->
  1045. </a>
  1046. <ul class="blockList">
  1047. <li class="blockList">
  1048. <h4>getAxis</h4>
  1049. <pre>public&nbsp;<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.357">getAxis</a>(int&nbsp;index)</pre>
  1050. <div class="block">Returns an axis for the plot.</div>
  1051. <dl>
  1052. <dt><span class="paramLabel">Parameters:</span></dt>
  1053. <dd><code>index</code> - the axis index.</dd>
  1054. <dt><span class="returnLabel">Returns:</span></dt>
  1055. <dd>The axis (<code>null</code> possible).</dd>
  1056. <dt><span class="simpleTagLabel">Since:</span></dt>
  1057. <dd>1.0.14</dd>
  1058. <dt><span class="seeLabel">See Also:</span></dt>
  1059. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxis-int-org.jfree.chart.axis.ValueAxis-"><code>setAxis(int, ValueAxis)</code></a></dd>
  1060. </dl>
  1061. </li>
  1062. </ul>
  1063. <a name="setAxis-org.jfree.chart.axis.ValueAxis-">
  1064. <!-- -->
  1065. </a>
  1066. <ul class="blockList">
  1067. <li class="blockList">
  1068. <h4>setAxis</h4>
  1069. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.371">setAxis</a>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</pre>
  1070. <div class="block">Sets the primary axis for the plot and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  1071. to all registered listeners.</div>
  1072. <dl>
  1073. <dt><span class="paramLabel">Parameters:</span></dt>
  1074. <dd><code>axis</code> - the new primary axis (<code>null</code> permitted).</dd>
  1075. </dl>
  1076. </li>
  1077. </ul>
  1078. <a name="setAxis-int-org.jfree.chart.axis.ValueAxis-">
  1079. <!-- -->
  1080. </a>
  1081. <ul class="blockList">
  1082. <li class="blockList">
  1083. <h4>setAxis</h4>
  1084. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.386">setAxis</a>(int&nbsp;index,
  1085. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</pre>
  1086. <div class="block">Sets an axis for the plot and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all
  1087. registered listeners.</div>
  1088. <dl>
  1089. <dt><span class="paramLabel">Parameters:</span></dt>
  1090. <dd><code>index</code> - the axis index.</dd>
  1091. <dd><code>axis</code> - the axis (<code>null</code> permitted).</dd>
  1092. <dt><span class="simpleTagLabel">Since:</span></dt>
  1093. <dd>1.0.14</dd>
  1094. <dt><span class="seeLabel">See Also:</span></dt>
  1095. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis-int-"><code>getAxis(int)</code></a></dd>
  1096. </dl>
  1097. </li>
  1098. </ul>
  1099. <a name="setAxis-int-org.jfree.chart.axis.ValueAxis-boolean-">
  1100. <!-- -->
  1101. </a>
  1102. <ul class="blockList">
  1103. <li class="blockList">
  1104. <h4>setAxis</h4>
  1105. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.402">setAxis</a>(int&nbsp;index,
  1106. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  1107. boolean&nbsp;notify)</pre>
  1108. <div class="block">Sets an axis for the plot and, if requested, sends a
  1109. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1110. <dl>
  1111. <dt><span class="paramLabel">Parameters:</span></dt>
  1112. <dd><code>index</code> - the axis index.</dd>
  1113. <dd><code>axis</code> - the axis (<code>null</code> permitted).</dd>
  1114. <dd><code>notify</code> - notify listeners?</dd>
  1115. <dt><span class="simpleTagLabel">Since:</span></dt>
  1116. <dd>1.0.14</dd>
  1117. <dt><span class="seeLabel">See Also:</span></dt>
  1118. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis-int-"><code>getAxis(int)</code></a></dd>
  1119. </dl>
  1120. </li>
  1121. </ul>
  1122. <a name="getAxisLocation--">
  1123. <!-- -->
  1124. </a>
  1125. <ul class="blockList">
  1126. <li class="blockList">
  1127. <h4>getAxisLocation</h4>
  1128. <pre>public&nbsp;<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.429">getAxisLocation</a>()</pre>
  1129. <div class="block">Returns the location of the primary axis.</div>
  1130. <dl>
  1131. <dt><span class="returnLabel">Returns:</span></dt>
  1132. <dd>The location (never <code>null</code>).</dd>
  1133. <dt><span class="simpleTagLabel">Since:</span></dt>
  1134. <dd>1.0.14</dd>
  1135. <dt><span class="seeLabel">See Also:</span></dt>
  1136. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-org.jfree.chart.plot.PolarAxisLocation-"><code>setAxisLocation(PolarAxisLocation)</code></a></dd>
  1137. </dl>
  1138. </li>
  1139. </ul>
  1140. <a name="getAxisLocation-int-">
  1141. <!-- -->
  1142. </a>
  1143. <ul class="blockList">
  1144. <li class="blockList">
  1145. <h4>getAxisLocation</h4>
  1146. <pre>public&nbsp;<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.444">getAxisLocation</a>(int&nbsp;index)</pre>
  1147. <div class="block">Returns the location for an axis.</div>
  1148. <dl>
  1149. <dt><span class="paramLabel">Parameters:</span></dt>
  1150. <dd><code>index</code> - the axis index.</dd>
  1151. <dt><span class="returnLabel">Returns:</span></dt>
  1152. <dd>The location (never <code>null</code>).</dd>
  1153. <dt><span class="simpleTagLabel">Since:</span></dt>
  1154. <dd>1.0.14</dd>
  1155. <dt><span class="seeLabel">See Also:</span></dt>
  1156. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAxisLocation-int-org.jfree.chart.plot.PolarAxisLocation-"><code>setAxisLocation(int, PolarAxisLocation)</code></a></dd>
  1157. </dl>
  1158. </li>
  1159. </ul>
  1160. <a name="setAxisLocation-org.jfree.chart.plot.PolarAxisLocation-">
  1161. <!-- -->
  1162. </a>
  1163. <ul class="blockList">
  1164. <li class="blockList">
  1165. <h4>setAxisLocation</h4>
  1166. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.462">setAxisLocation</a>(<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location)</pre>
  1167. <div class="block">Sets the location of the primary axis and sends a
  1168. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1169. <dl>
  1170. <dt><span class="paramLabel">Parameters:</span></dt>
  1171. <dd><code>location</code> - the location (<code>null</code> not permitted).</dd>
  1172. <dt><span class="simpleTagLabel">Since:</span></dt>
  1173. <dd>1.0.14</dd>
  1174. <dt><span class="seeLabel">See Also:</span></dt>
  1175. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisLocation--"><code>getAxisLocation()</code></a></dd>
  1176. </dl>
  1177. </li>
  1178. </ul>
  1179. <a name="setAxisLocation-org.jfree.chart.plot.PolarAxisLocation-boolean-">
  1180. <!-- -->
  1181. </a>
  1182. <ul class="blockList">
  1183. <li class="blockList">
  1184. <h4>setAxisLocation</h4>
  1185. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.478">setAxisLocation</a>(<a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  1186. boolean&nbsp;notify)</pre>
  1187. <div class="block">Sets the location of the primary axis and, if requested, sends a
  1188. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1189. <dl>
  1190. <dt><span class="paramLabel">Parameters:</span></dt>
  1191. <dd><code>location</code> - the location (<code>null</code> not permitted).</dd>
  1192. <dd><code>notify</code> - notify listeners?</dd>
  1193. <dt><span class="simpleTagLabel">Since:</span></dt>
  1194. <dd>1.0.14</dd>
  1195. <dt><span class="seeLabel">See Also:</span></dt>
  1196. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisLocation--"><code>getAxisLocation()</code></a></dd>
  1197. </dl>
  1198. </li>
  1199. </ul>
  1200. <a name="setAxisLocation-int-org.jfree.chart.plot.PolarAxisLocation-">
  1201. <!-- -->
  1202. </a>
  1203. <ul class="blockList">
  1204. <li class="blockList">
  1205. <h4>setAxisLocation</h4>
  1206. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.494">setAxisLocation</a>(int&nbsp;index,
  1207. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location)</pre>
  1208. <div class="block">Sets the location for an axis and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  1209. to all registered listeners.</div>
  1210. <dl>
  1211. <dt><span class="paramLabel">Parameters:</span></dt>
  1212. <dd><code>index</code> - the axis index.</dd>
  1213. <dd><code>location</code> - the location (<code>null</code> not permitted).</dd>
  1214. <dt><span class="simpleTagLabel">Since:</span></dt>
  1215. <dd>1.0.14</dd>
  1216. <dt><span class="seeLabel">See Also:</span></dt>
  1217. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxisLocation-int-"><code>getAxisLocation(int)</code></a></dd>
  1218. </dl>
  1219. </li>
  1220. </ul>
  1221. <a name="setAxisLocation-int-org.jfree.chart.plot.PolarAxisLocation-boolean-">
  1222. <!-- -->
  1223. </a>
  1224. <ul class="blockList">
  1225. <li class="blockList">
  1226. <h4>setAxisLocation</h4>
  1227. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.509">setAxisLocation</a>(int&nbsp;index,
  1228. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  1229. boolean&nbsp;notify)</pre>
  1230. <div class="block">Sets the axis location for an axis and, if requested, sends a
  1231. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1232. <dl>
  1233. <dt><span class="paramLabel">Parameters:</span></dt>
  1234. <dd><code>index</code> - the axis index.</dd>
  1235. <dd><code>location</code> - the location (<code>null</code> not permitted).</dd>
  1236. <dd><code>notify</code> - notify listeners?</dd>
  1237. <dt><span class="simpleTagLabel">Since:</span></dt>
  1238. <dd>1.0.14</dd>
  1239. </dl>
  1240. </li>
  1241. </ul>
  1242. <a name="getAxisCount--">
  1243. <!-- -->
  1244. </a>
  1245. <ul class="blockList">
  1246. <li class="blockList">
  1247. <h4>getAxisCount</h4>
  1248. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.525">getAxisCount</a>()</pre>
  1249. <div class="block">Returns the number of domain axes.</div>
  1250. <dl>
  1251. <dt><span class="returnLabel">Returns:</span></dt>
  1252. <dd>The axis count.</dd>
  1253. <dt><span class="simpleTagLabel">Since:</span></dt>
  1254. <dd>1.0.14</dd>
  1255. </dl>
  1256. </li>
  1257. </ul>
  1258. <a name="getDataset--">
  1259. <!-- -->
  1260. </a>
  1261. <ul class="blockList">
  1262. <li class="blockList">
  1263. <h4>getDataset</h4>
  1264. <pre>public&nbsp;<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.536">getDataset</a>()</pre>
  1265. <div class="block">Returns the primary dataset for the plot.</div>
  1266. <dl>
  1267. <dt><span class="returnLabel">Returns:</span></dt>
  1268. <dd>The primary dataset (possibly <code>null</code>).</dd>
  1269. <dt><span class="seeLabel">See Also:</span></dt>
  1270. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setDataset-org.jfree.data.xy.XYDataset-"><code>setDataset(XYDataset)</code></a></dd>
  1271. </dl>
  1272. </li>
  1273. </ul>
  1274. <a name="getDataset-int-">
  1275. <!-- -->
  1276. </a>
  1277. <ul class="blockList">
  1278. <li class="blockList">
  1279. <h4>getDataset</h4>
  1280. <pre>public&nbsp;<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.551">getDataset</a>(int&nbsp;index)</pre>
  1281. <div class="block">Returns the dataset with the specified index, if any.</div>
  1282. <dl>
  1283. <dt><span class="paramLabel">Parameters:</span></dt>
  1284. <dd><code>index</code> - the dataset index.</dd>
  1285. <dt><span class="returnLabel">Returns:</span></dt>
  1286. <dd>The dataset (possibly <code>null</code>).</dd>
  1287. <dt><span class="simpleTagLabel">Since:</span></dt>
  1288. <dd>1.0.14</dd>
  1289. <dt><span class="seeLabel">See Also:</span></dt>
  1290. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setDataset-int-org.jfree.data.xy.XYDataset-"><code>setDataset(int, XYDataset)</code></a></dd>
  1291. </dl>
  1292. </li>
  1293. </ul>
  1294. <a name="setDataset-org.jfree.data.xy.XYDataset-">
  1295. <!-- -->
  1296. </a>
  1297. <ul class="blockList">
  1298. <li class="blockList">
  1299. <h4>setDataset</h4>
  1300. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.568">setDataset</a>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  1301. <div class="block">Sets the primary dataset for the plot, replacing the existing dataset
  1302. if there is one, and sends a <code>link PlotChangeEvent</code> to all
  1303. registered listeners.</div>
  1304. <dl>
  1305. <dt><span class="paramLabel">Parameters:</span></dt>
  1306. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  1307. <dt><span class="seeLabel">See Also:</span></dt>
  1308. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDataset--"><code>getDataset()</code></a></dd>
  1309. </dl>
  1310. </li>
  1311. </ul>
  1312. <a name="setDataset-int-org.jfree.data.xy.XYDataset-">
  1313. <!-- -->
  1314. </a>
  1315. <ul class="blockList">
  1316. <li class="blockList">
  1317. <h4>setDataset</h4>
  1318. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.584">setDataset</a>(int&nbsp;index,
  1319. <a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  1320. <div class="block">Sets a dataset for the plot, replacing the existing dataset at the same
  1321. index if there is one, and sends a <code>link PlotChangeEvent</code> to all
  1322. registered listeners.</div>
  1323. <dl>
  1324. <dt><span class="paramLabel">Parameters:</span></dt>
  1325. <dd><code>index</code> - the dataset index.</dd>
  1326. <dd><code>dataset</code> - the dataset (<code>null</code> permitted).</dd>
  1327. <dt><span class="simpleTagLabel">Since:</span></dt>
  1328. <dd>1.0.14</dd>
  1329. <dt><span class="seeLabel">See Also:</span></dt>
  1330. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getDataset-int-"><code>getDataset(int)</code></a></dd>
  1331. </dl>
  1332. </li>
  1333. </ul>
  1334. <a name="getDatasetCount--">
  1335. <!-- -->
  1336. </a>
  1337. <ul class="blockList">
  1338. <li class="blockList">
  1339. <h4>getDatasetCount</h4>
  1340. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.606">getDatasetCount</a>()</pre>
  1341. <div class="block">Returns the number of datasets.</div>
  1342. <dl>
  1343. <dt><span class="returnLabel">Returns:</span></dt>
  1344. <dd>The number of datasets.</dd>
  1345. <dt><span class="simpleTagLabel">Since:</span></dt>
  1346. <dd>1.0.14</dd>
  1347. </dl>
  1348. </li>
  1349. </ul>
  1350. <a name="indexOf-org.jfree.data.xy.XYDataset-">
  1351. <!-- -->
  1352. </a>
  1353. <ul class="blockList">
  1354. <li class="blockList">
  1355. <h4>indexOf</h4>
  1356. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.620">indexOf</a>(<a href="../../../../org/jfree/data/xy/XYDataset.html" title="interface in org.jfree.data.xy">XYDataset</a>&nbsp;dataset)</pre>
  1357. <div class="block">Returns the index of the specified dataset, or <code>-1</code> if the
  1358. dataset does not belong to the plot.</div>
  1359. <dl>
  1360. <dt><span class="paramLabel">Parameters:</span></dt>
  1361. <dd><code>dataset</code> - the dataset (<code>null</code> not permitted).</dd>
  1362. <dt><span class="returnLabel">Returns:</span></dt>
  1363. <dd>The index.</dd>
  1364. <dt><span class="simpleTagLabel">Since:</span></dt>
  1365. <dd>1.0.14</dd>
  1366. </dl>
  1367. </li>
  1368. </ul>
  1369. <a name="getRenderer--">
  1370. <!-- -->
  1371. </a>
  1372. <ul class="blockList">
  1373. <li class="blockList">
  1374. <h4>getRenderer</h4>
  1375. <pre>public&nbsp;<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.638">getRenderer</a>()</pre>
  1376. <div class="block">Returns the primary renderer.</div>
  1377. <dl>
  1378. <dt><span class="returnLabel">Returns:</span></dt>
  1379. <dd>The renderer (possibly <code>null</code>).</dd>
  1380. <dt><span class="seeLabel">See Also:</span></dt>
  1381. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRenderer-org.jfree.chart.renderer.PolarItemRenderer-"><code>setRenderer(PolarItemRenderer)</code></a></dd>
  1382. </dl>
  1383. </li>
  1384. </ul>
  1385. <a name="getRenderer-int-">
  1386. <!-- -->
  1387. </a>
  1388. <ul class="blockList">
  1389. <li class="blockList">
  1390. <h4>getRenderer</h4>
  1391. <pre>public&nbsp;<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.653">getRenderer</a>(int&nbsp;index)</pre>
  1392. <div class="block">Returns the renderer at the specified index, if there is one.</div>
  1393. <dl>
  1394. <dt><span class="paramLabel">Parameters:</span></dt>
  1395. <dd><code>index</code> - the renderer index.</dd>
  1396. <dt><span class="returnLabel">Returns:</span></dt>
  1397. <dd>The renderer (possibly <code>null</code>).</dd>
  1398. <dt><span class="simpleTagLabel">Since:</span></dt>
  1399. <dd>1.0.14</dd>
  1400. <dt><span class="seeLabel">See Also:</span></dt>
  1401. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRenderer-int-org.jfree.chart.renderer.PolarItemRenderer-"><code>setRenderer(int, PolarItemRenderer)</code></a></dd>
  1402. </dl>
  1403. </li>
  1404. </ul>
  1405. <a name="setRenderer-org.jfree.chart.renderer.PolarItemRenderer-">
  1406. <!-- -->
  1407. </a>
  1408. <ul class="blockList">
  1409. <li class="blockList">
  1410. <h4>setRenderer</h4>
  1411. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.670">setRenderer</a>(<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</pre>
  1412. <div class="block">Sets the primary renderer, and notifies all listeners of a change to the
  1413. plot. If the renderer is set to <code>null</code>, no data items will
  1414. be drawn for the corresponding dataset.</div>
  1415. <dl>
  1416. <dt><span class="paramLabel">Parameters:</span></dt>
  1417. <dd><code>renderer</code> - the new renderer (<code>null</code> permitted).</dd>
  1418. <dt><span class="seeLabel">See Also:</span></dt>
  1419. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRenderer--"><code>getRenderer()</code></a></dd>
  1420. </dl>
  1421. </li>
  1422. </ul>
  1423. <a name="setRenderer-int-org.jfree.chart.renderer.PolarItemRenderer-">
  1424. <!-- -->
  1425. </a>
  1426. <ul class="blockList">
  1427. <li class="blockList">
  1428. <h4>setRenderer</h4>
  1429. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.685">setRenderer</a>(int&nbsp;index,
  1430. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</pre>
  1431. <div class="block">Sets a renderer and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all
  1432. registered listeners.</div>
  1433. <dl>
  1434. <dt><span class="paramLabel">Parameters:</span></dt>
  1435. <dd><code>index</code> - the index.</dd>
  1436. <dd><code>renderer</code> - the renderer.</dd>
  1437. <dt><span class="simpleTagLabel">Since:</span></dt>
  1438. <dd>1.0.14</dd>
  1439. <dt><span class="seeLabel">See Also:</span></dt>
  1440. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRenderer-int-"><code>getRenderer(int)</code></a></dd>
  1441. </dl>
  1442. </li>
  1443. </ul>
  1444. <a name="setRenderer-int-org.jfree.chart.renderer.PolarItemRenderer-boolean-">
  1445. <!-- -->
  1446. </a>
  1447. <ul class="blockList">
  1448. <li class="blockList">
  1449. <h4>setRenderer</h4>
  1450. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.701">setRenderer</a>(int&nbsp;index,
  1451. <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer,
  1452. boolean&nbsp;notify)</pre>
  1453. <div class="block">Sets a renderer and, if requested, sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to
  1454. all registered listeners.</div>
  1455. <dl>
  1456. <dt><span class="paramLabel">Parameters:</span></dt>
  1457. <dd><code>index</code> - the index.</dd>
  1458. <dd><code>renderer</code> - the renderer.</dd>
  1459. <dd><code>notify</code> - notify listeners?</dd>
  1460. <dt><span class="simpleTagLabel">Since:</span></dt>
  1461. <dd>1.0.14</dd>
  1462. <dt><span class="seeLabel">See Also:</span></dt>
  1463. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRenderer-int-"><code>getRenderer(int)</code></a></dd>
  1464. </dl>
  1465. </li>
  1466. </ul>
  1467. <a name="getAngleTickUnit--">
  1468. <!-- -->
  1469. </a>
  1470. <ul class="blockList">
  1471. <li class="blockList">
  1472. <h4>getAngleTickUnit</h4>
  1473. <pre>public&nbsp;<a href="../../../../org/jfree/chart/axis/TickUnit.html" title="class in org.jfree.chart.axis">TickUnit</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.725">getAngleTickUnit</a>()</pre>
  1474. <div class="block">Returns the tick unit that controls the spacing of the angular grid
  1475. lines.</div>
  1476. <dl>
  1477. <dt><span class="returnLabel">Returns:</span></dt>
  1478. <dd>The tick unit (never <code>null</code>).</dd>
  1479. <dt><span class="simpleTagLabel">Since:</span></dt>
  1480. <dd>1.0.10</dd>
  1481. </dl>
  1482. </li>
  1483. </ul>
  1484. <a name="setAngleTickUnit-org.jfree.chart.axis.TickUnit-">
  1485. <!-- -->
  1486. </a>
  1487. <ul class="blockList">
  1488. <li class="blockList">
  1489. <h4>setAngleTickUnit</h4>
  1490. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.737">setAngleTickUnit</a>(<a href="../../../../org/jfree/chart/axis/TickUnit.html" title="class in org.jfree.chart.axis">TickUnit</a>&nbsp;unit)</pre>
  1491. <div class="block">Sets the tick unit that controls the spacing of the angular grid
  1492. lines, and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1493. <dl>
  1494. <dt><span class="paramLabel">Parameters:</span></dt>
  1495. <dd><code>unit</code> - the tick unit (<code>null</code> not permitted).</dd>
  1496. <dt><span class="simpleTagLabel">Since:</span></dt>
  1497. <dd>1.0.10</dd>
  1498. </dl>
  1499. </li>
  1500. </ul>
  1501. <a name="getAngleOffset--">
  1502. <!-- -->
  1503. </a>
  1504. <ul class="blockList">
  1505. <li class="blockList">
  1506. <h4>getAngleOffset</h4>
  1507. <pre>public&nbsp;double&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.749">getAngleOffset</a>()</pre>
  1508. <div class="block">Returns the offset that is used for all angles.</div>
  1509. <dl>
  1510. <dt><span class="returnLabel">Returns:</span></dt>
  1511. <dd>The offset for the angles.</dd>
  1512. <dt><span class="simpleTagLabel">Since:</span></dt>
  1513. <dd>1.0.14</dd>
  1514. </dl>
  1515. </li>
  1516. </ul>
  1517. <a name="setAngleOffset-double-">
  1518. <!-- -->
  1519. </a>
  1520. <ul class="blockList">
  1521. <li class="blockList">
  1522. <h4>setAngleOffset</h4>
  1523. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.763">setAngleOffset</a>(double&nbsp;offset)</pre>
  1524. <div class="block">Sets the offset that is used for all angles and sends a
  1525. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.
  1526. This is useful to let 0 degrees be at the north, east, south or west
  1527. side of the chart.</div>
  1528. <dl>
  1529. <dt><span class="paramLabel">Parameters:</span></dt>
  1530. <dd><code>offset</code> - The offset</dd>
  1531. <dt><span class="simpleTagLabel">Since:</span></dt>
  1532. <dd>1.0.14</dd>
  1533. </dl>
  1534. </li>
  1535. </ul>
  1536. <a name="isCounterClockwise--">
  1537. <!-- -->
  1538. </a>
  1539. <ul class="blockList">
  1540. <li class="blockList">
  1541. <h4>isCounterClockwise</h4>
  1542. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.775">isCounterClockwise</a>()</pre>
  1543. <div class="block">Get the direction for growing angle degrees.</div>
  1544. <dl>
  1545. <dt><span class="returnLabel">Returns:</span></dt>
  1546. <dd><code>true</code> if angle increases counterclockwise,
  1547. <code>false</code> otherwise.</dd>
  1548. <dt><span class="simpleTagLabel">Since:</span></dt>
  1549. <dd>1.0.14</dd>
  1550. </dl>
  1551. </li>
  1552. </ul>
  1553. <a name="setCounterClockwise-boolean-">
  1554. <!-- -->
  1555. </a>
  1556. <ul class="blockList">
  1557. <li class="blockList">
  1558. <h4>setCounterClockwise</h4>
  1559. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.788">setCounterClockwise</a>(boolean&nbsp;counterClockwise)</pre>
  1560. <div class="block">Sets the flag for increasing angle degrees direction.
  1561. <code>true</code> for counterclockwise, <code>false</code> for
  1562. clockwise.</div>
  1563. <dl>
  1564. <dt><span class="paramLabel">Parameters:</span></dt>
  1565. <dd><code>counterClockwise</code> - The flag.</dd>
  1566. <dt><span class="simpleTagLabel">Since:</span></dt>
  1567. <dd>1.0.14</dd>
  1568. </dl>
  1569. </li>
  1570. </ul>
  1571. <a name="isAngleLabelsVisible--">
  1572. <!-- -->
  1573. </a>
  1574. <ul class="blockList">
  1575. <li class="blockList">
  1576. <h4>isAngleLabelsVisible</h4>
  1577. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.800">isAngleLabelsVisible</a>()</pre>
  1578. <div class="block">Returns a flag that controls whether or not the angle labels are visible.</div>
  1579. <dl>
  1580. <dt><span class="returnLabel">Returns:</span></dt>
  1581. <dd>A boolean.</dd>
  1582. <dt><span class="seeLabel">See Also:</span></dt>
  1583. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelsVisible-boolean-"><code>setAngleLabelsVisible(boolean)</code></a></dd>
  1584. </dl>
  1585. </li>
  1586. </ul>
  1587. <a name="setAngleLabelsVisible-boolean-">
  1588. <!-- -->
  1589. </a>
  1590. <ul class="blockList">
  1591. <li class="blockList">
  1592. <h4>setAngleLabelsVisible</h4>
  1593. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.812">setAngleLabelsVisible</a>(boolean&nbsp;visible)</pre>
  1594. <div class="block">Sets the flag that controls whether or not the angle labels are visible,
  1595. and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1596. <dl>
  1597. <dt><span class="paramLabel">Parameters:</span></dt>
  1598. <dd><code>visible</code> - the flag.</dd>
  1599. <dt><span class="seeLabel">See Also:</span></dt>
  1600. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isAngleLabelsVisible--"><code>isAngleLabelsVisible()</code></a></dd>
  1601. </dl>
  1602. </li>
  1603. </ul>
  1604. <a name="getAngleLabelFont--">
  1605. <!-- -->
  1606. </a>
  1607. <ul class="blockList">
  1608. <li class="blockList">
  1609. <h4>getAngleLabelFont</h4>
  1610. <pre>public&nbsp;java.awt.Font&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.826">getAngleLabelFont</a>()</pre>
  1611. <div class="block">Returns the font used to display the angle labels.</div>
  1612. <dl>
  1613. <dt><span class="returnLabel">Returns:</span></dt>
  1614. <dd>A font (never <code>null</code>).</dd>
  1615. <dt><span class="seeLabel">See Also:</span></dt>
  1616. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelFont-java.awt.Font-"><code>setAngleLabelFont(Font)</code></a></dd>
  1617. </dl>
  1618. </li>
  1619. </ul>
  1620. <a name="setAngleLabelFont-java.awt.Font-">
  1621. <!-- -->
  1622. </a>
  1623. <ul class="blockList">
  1624. <li class="blockList">
  1625. <h4>setAngleLabelFont</h4>
  1626. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.838">setAngleLabelFont</a>(java.awt.Font&nbsp;font)</pre>
  1627. <div class="block">Sets the font used to display the angle labels and sends a
  1628. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1629. <dl>
  1630. <dt><span class="paramLabel">Parameters:</span></dt>
  1631. <dd><code>font</code> - the font (<code>null</code> not permitted).</dd>
  1632. <dt><span class="seeLabel">See Also:</span></dt>
  1633. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleLabelFont--"><code>getAngleLabelFont()</code></a></dd>
  1634. </dl>
  1635. </li>
  1636. </ul>
  1637. <a name="getAngleLabelPaint--">
  1638. <!-- -->
  1639. </a>
  1640. <ul class="blockList">
  1641. <li class="blockList">
  1642. <h4>getAngleLabelPaint</h4>
  1643. <pre>public&nbsp;java.awt.Paint&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.851">getAngleLabelPaint</a>()</pre>
  1644. <div class="block">Returns the paint used to display the angle labels.</div>
  1645. <dl>
  1646. <dt><span class="returnLabel">Returns:</span></dt>
  1647. <dd>A paint (never <code>null</code>).</dd>
  1648. <dt><span class="seeLabel">See Also:</span></dt>
  1649. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleLabelPaint-java.awt.Paint-"><code>setAngleLabelPaint(Paint)</code></a></dd>
  1650. </dl>
  1651. </li>
  1652. </ul>
  1653. <a name="setAngleLabelPaint-java.awt.Paint-">
  1654. <!-- -->
  1655. </a>
  1656. <ul class="blockList">
  1657. <li class="blockList">
  1658. <h4>setAngleLabelPaint</h4>
  1659. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.861">setAngleLabelPaint</a>(java.awt.Paint&nbsp;paint)</pre>
  1660. <div class="block">Sets the paint used to display the angle labels and sends a
  1661. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1662. <dl>
  1663. <dt><span class="paramLabel">Parameters:</span></dt>
  1664. <dd><code>paint</code> - the paint (<code>null</code> not permitted).</dd>
  1665. </dl>
  1666. </li>
  1667. </ul>
  1668. <a name="isAngleGridlinesVisible--">
  1669. <!-- -->
  1670. </a>
  1671. <ul class="blockList">
  1672. <li class="blockList">
  1673. <h4>isAngleGridlinesVisible</h4>
  1674. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.875">isAngleGridlinesVisible</a>()</pre>
  1675. <div class="block">Returns <code>true</code> if the angular gridlines are visible, and
  1676. <code>false</code> otherwise.</div>
  1677. <dl>
  1678. <dt><span class="returnLabel">Returns:</span></dt>
  1679. <dd><code>true</code> or <code>false</code>.</dd>
  1680. <dt><span class="seeLabel">See Also:</span></dt>
  1681. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlinesVisible-boolean-"><code>setAngleGridlinesVisible(boolean)</code></a></dd>
  1682. </dl>
  1683. </li>
  1684. </ul>
  1685. <a name="setAngleGridlinesVisible-boolean-">
  1686. <!-- -->
  1687. </a>
  1688. <ul class="blockList">
  1689. <li class="blockList">
  1690. <h4>setAngleGridlinesVisible</h4>
  1691. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.890">setAngleGridlinesVisible</a>(boolean&nbsp;visible)</pre>
  1692. <div class="block">Sets the flag that controls whether or not the angular grid-lines are
  1693. visible.
  1694. <p>
  1695. If the flag value is changed, a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> is sent to all
  1696. registered listeners.</div>
  1697. <dl>
  1698. <dt><span class="paramLabel">Parameters:</span></dt>
  1699. <dd><code>visible</code> - the new value of the flag.</dd>
  1700. <dt><span class="seeLabel">See Also:</span></dt>
  1701. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isAngleGridlinesVisible--"><code>isAngleGridlinesVisible()</code></a></dd>
  1702. </dl>
  1703. </li>
  1704. </ul>
  1705. <a name="getAngleGridlineStroke--">
  1706. <!-- -->
  1707. </a>
  1708. <ul class="blockList">
  1709. <li class="blockList">
  1710. <h4>getAngleGridlineStroke</h4>
  1711. <pre>public&nbsp;java.awt.Stroke&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.905">getAngleGridlineStroke</a>()</pre>
  1712. <div class="block">Returns the stroke for the grid-lines (if any) plotted against the
  1713. angular axis.</div>
  1714. <dl>
  1715. <dt><span class="returnLabel">Returns:</span></dt>
  1716. <dd>The stroke (possibly <code>null</code>).</dd>
  1717. <dt><span class="seeLabel">See Also:</span></dt>
  1718. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlineStroke-java.awt.Stroke-"><code>setAngleGridlineStroke(Stroke)</code></a></dd>
  1719. </dl>
  1720. </li>
  1721. </ul>
  1722. <a name="setAngleGridlineStroke-java.awt.Stroke-">
  1723. <!-- -->
  1724. </a>
  1725. <ul class="blockList">
  1726. <li class="blockList">
  1727. <h4>setAngleGridlineStroke</h4>
  1728. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.919">setAngleGridlineStroke</a>(java.awt.Stroke&nbsp;stroke)</pre>
  1729. <div class="block">Sets the stroke for the grid lines plotted against the angular axis and
  1730. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.
  1731. <p>
  1732. If you set this to <code>null</code>, no grid lines will be drawn.</div>
  1733. <dl>
  1734. <dt><span class="paramLabel">Parameters:</span></dt>
  1735. <dd><code>stroke</code> - the stroke (<code>null</code> permitted).</dd>
  1736. <dt><span class="seeLabel">See Also:</span></dt>
  1737. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleGridlineStroke--"><code>getAngleGridlineStroke()</code></a></dd>
  1738. </dl>
  1739. </li>
  1740. </ul>
  1741. <a name="getAngleGridlinePaint--">
  1742. <!-- -->
  1743. </a>
  1744. <ul class="blockList">
  1745. <li class="blockList">
  1746. <h4>getAngleGridlinePaint</h4>
  1747. <pre>public&nbsp;java.awt.Paint&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.932">getAngleGridlinePaint</a>()</pre>
  1748. <div class="block">Returns the paint for the grid lines (if any) plotted against the
  1749. angular axis.</div>
  1750. <dl>
  1751. <dt><span class="returnLabel">Returns:</span></dt>
  1752. <dd>The paint (possibly <code>null</code>).</dd>
  1753. <dt><span class="seeLabel">See Also:</span></dt>
  1754. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setAngleGridlinePaint-java.awt.Paint-"><code>setAngleGridlinePaint(Paint)</code></a></dd>
  1755. </dl>
  1756. </li>
  1757. </ul>
  1758. <a name="setAngleGridlinePaint-java.awt.Paint-">
  1759. <!-- -->
  1760. </a>
  1761. <ul class="blockList">
  1762. <li class="blockList">
  1763. <h4>setAngleGridlinePaint</h4>
  1764. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.945">setAngleGridlinePaint</a>(java.awt.Paint&nbsp;paint)</pre>
  1765. <div class="block">Sets the paint for the grid lines plotted against the angular axis.
  1766. <p>
  1767. If you set this to <code>null</code>, no grid lines will be drawn.</div>
  1768. <dl>
  1769. <dt><span class="paramLabel">Parameters:</span></dt>
  1770. <dd><code>paint</code> - the paint (<code>null</code> permitted).</dd>
  1771. <dt><span class="seeLabel">See Also:</span></dt>
  1772. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAngleGridlinePaint--"><code>getAngleGridlinePaint()</code></a></dd>
  1773. </dl>
  1774. </li>
  1775. </ul>
  1776. <a name="isRadiusGridlinesVisible--">
  1777. <!-- -->
  1778. </a>
  1779. <ul class="blockList">
  1780. <li class="blockList">
  1781. <h4>isRadiusGridlinesVisible</h4>
  1782. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.958">isRadiusGridlinesVisible</a>()</pre>
  1783. <div class="block">Returns <code>true</code> if the radius axis grid is visible, and
  1784. <code>false</code> otherwise.</div>
  1785. <dl>
  1786. <dt><span class="returnLabel">Returns:</span></dt>
  1787. <dd><code>true</code> or <code>false</code>.</dd>
  1788. <dt><span class="seeLabel">See Also:</span></dt>
  1789. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlinesVisible-boolean-"><code>setRadiusGridlinesVisible(boolean)</code></a></dd>
  1790. </dl>
  1791. </li>
  1792. </ul>
  1793. <a name="setRadiusGridlinesVisible-boolean-">
  1794. <!-- -->
  1795. </a>
  1796. <ul class="blockList">
  1797. <li class="blockList">
  1798. <h4>setRadiusGridlinesVisible</h4>
  1799. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.973">setRadiusGridlinesVisible</a>(boolean&nbsp;visible)</pre>
  1800. <div class="block">Sets the flag that controls whether or not the radius axis grid lines
  1801. are visible.
  1802. <p>
  1803. If the flag value is changed, a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> is sent to all
  1804. registered listeners.</div>
  1805. <dl>
  1806. <dt><span class="paramLabel">Parameters:</span></dt>
  1807. <dd><code>visible</code> - the new value of the flag.</dd>
  1808. <dt><span class="seeLabel">See Also:</span></dt>
  1809. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#isRadiusGridlinesVisible--"><code>isRadiusGridlinesVisible()</code></a></dd>
  1810. </dl>
  1811. </li>
  1812. </ul>
  1813. <a name="getRadiusGridlineStroke--">
  1814. <!-- -->
  1815. </a>
  1816. <ul class="blockList">
  1817. <li class="blockList">
  1818. <h4>getRadiusGridlineStroke</h4>
  1819. <pre>public&nbsp;java.awt.Stroke&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.988">getRadiusGridlineStroke</a>()</pre>
  1820. <div class="block">Returns the stroke for the grid lines (if any) plotted against the
  1821. radius axis.</div>
  1822. <dl>
  1823. <dt><span class="returnLabel">Returns:</span></dt>
  1824. <dd>The stroke (possibly <code>null</code>).</dd>
  1825. <dt><span class="seeLabel">See Also:</span></dt>
  1826. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlineStroke-java.awt.Stroke-"><code>setRadiusGridlineStroke(Stroke)</code></a></dd>
  1827. </dl>
  1828. </li>
  1829. </ul>
  1830. <a name="setRadiusGridlineStroke-java.awt.Stroke-">
  1831. <!-- -->
  1832. </a>
  1833. <ul class="blockList">
  1834. <li class="blockList">
  1835. <h4>setRadiusGridlineStroke</h4>
  1836. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1002">setRadiusGridlineStroke</a>(java.awt.Stroke&nbsp;stroke)</pre>
  1837. <div class="block">Sets the stroke for the grid lines plotted against the radius axis and
  1838. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.
  1839. <p>
  1840. If you set this to <code>null</code>, no grid lines will be drawn.</div>
  1841. <dl>
  1842. <dt><span class="paramLabel">Parameters:</span></dt>
  1843. <dd><code>stroke</code> - the stroke (<code>null</code> permitted).</dd>
  1844. <dt><span class="seeLabel">See Also:</span></dt>
  1845. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRadiusGridlineStroke--"><code>getRadiusGridlineStroke()</code></a></dd>
  1846. </dl>
  1847. </li>
  1848. </ul>
  1849. <a name="getRadiusGridlinePaint--">
  1850. <!-- -->
  1851. </a>
  1852. <ul class="blockList">
  1853. <li class="blockList">
  1854. <h4>getRadiusGridlinePaint</h4>
  1855. <pre>public&nbsp;java.awt.Paint&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1015">getRadiusGridlinePaint</a>()</pre>
  1856. <div class="block">Returns the paint for the grid lines (if any) plotted against the radius
  1857. axis.</div>
  1858. <dl>
  1859. <dt><span class="returnLabel">Returns:</span></dt>
  1860. <dd>The paint (possibly <code>null</code>).</dd>
  1861. <dt><span class="seeLabel">See Also:</span></dt>
  1862. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setRadiusGridlinePaint-java.awt.Paint-"><code>setRadiusGridlinePaint(Paint)</code></a></dd>
  1863. </dl>
  1864. </li>
  1865. </ul>
  1866. <a name="setRadiusGridlinePaint-java.awt.Paint-">
  1867. <!-- -->
  1868. </a>
  1869. <ul class="blockList">
  1870. <li class="blockList">
  1871. <h4>setRadiusGridlinePaint</h4>
  1872. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1029">setRadiusGridlinePaint</a>(java.awt.Paint&nbsp;paint)</pre>
  1873. <div class="block">Sets the paint for the grid lines plotted against the radius axis and
  1874. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.
  1875. <p>
  1876. If you set this to <code>null</code>, no grid lines will be drawn.</div>
  1877. <dl>
  1878. <dt><span class="paramLabel">Parameters:</span></dt>
  1879. <dd><code>paint</code> - the paint (<code>null</code> permitted).</dd>
  1880. <dt><span class="seeLabel">See Also:</span></dt>
  1881. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getRadiusGridlinePaint--"><code>getRadiusGridlinePaint()</code></a></dd>
  1882. </dl>
  1883. </li>
  1884. </ul>
  1885. <a name="isRadiusMinorGridlinesVisible--">
  1886. <!-- -->
  1887. </a>
  1888. <ul class="blockList">
  1889. <li class="blockList">
  1890. <h4>isRadiusMinorGridlinesVisible</h4>
  1891. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1041">isRadiusMinorGridlinesVisible</a>()</pre>
  1892. <div class="block">Return the current value of the flag indicating if radial minor
  1893. grid-lines will be drawn or not.</div>
  1894. <dl>
  1895. <dt><span class="returnLabel">Returns:</span></dt>
  1896. <dd>Returns <code>true</code> if radial minor grid-lines are drawn.</dd>
  1897. <dt><span class="simpleTagLabel">Since:</span></dt>
  1898. <dd>1.0.15</dd>
  1899. </dl>
  1900. </li>
  1901. </ul>
  1902. <a name="setRadiusMinorGridlinesVisible-boolean-">
  1903. <!-- -->
  1904. </a>
  1905. <ul class="blockList">
  1906. <li class="blockList">
  1907. <h4>setRadiusMinorGridlinesVisible</h4>
  1908. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1053">setRadiusMinorGridlinesVisible</a>(boolean&nbsp;flag)</pre>
  1909. <div class="block">Set the flag that determines if radial minor grid-lines will be drawn,
  1910. and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1911. <dl>
  1912. <dt><span class="paramLabel">Parameters:</span></dt>
  1913. <dd><code>flag</code> - <code>true</code> to draw the radial minor grid-lines,
  1914. <code>false</code> to hide them.</dd>
  1915. <dt><span class="simpleTagLabel">Since:</span></dt>
  1916. <dd>1.0.15</dd>
  1917. </dl>
  1918. </li>
  1919. </ul>
  1920. <a name="getMargin--">
  1921. <!-- -->
  1922. </a>
  1923. <ul class="blockList">
  1924. <li class="blockList">
  1925. <h4>getMargin</h4>
  1926. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1065">getMargin</a>()</pre>
  1927. <div class="block">Returns the margin around the plot area.</div>
  1928. <dl>
  1929. <dt><span class="returnLabel">Returns:</span></dt>
  1930. <dd>The actual margin in pixels.</dd>
  1931. <dt><span class="simpleTagLabel">Since:</span></dt>
  1932. <dd>1.0.14</dd>
  1933. </dl>
  1934. </li>
  1935. </ul>
  1936. <a name="setMargin-int-">
  1937. <!-- -->
  1938. </a>
  1939. <ul class="blockList">
  1940. <li class="blockList">
  1941. <h4>setMargin</h4>
  1942. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1077">setMargin</a>(int&nbsp;margin)</pre>
  1943. <div class="block">Set the margin around the plot area and sends a
  1944. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  1945. <dl>
  1946. <dt><span class="paramLabel">Parameters:</span></dt>
  1947. <dd><code>margin</code> - The new margin in pixels.</dd>
  1948. <dt><span class="simpleTagLabel">Since:</span></dt>
  1949. <dd>1.0.14</dd>
  1950. </dl>
  1951. </li>
  1952. </ul>
  1953. <a name="getFixedLegendItems--">
  1954. <!-- -->
  1955. </a>
  1956. <ul class="blockList">
  1957. <li class="blockList">
  1958. <h4>getFixedLegendItems</h4>
  1959. <pre>public&nbsp;<a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1091">getFixedLegendItems</a>()</pre>
  1960. <div class="block">Returns the fixed legend items, if any.</div>
  1961. <dl>
  1962. <dt><span class="returnLabel">Returns:</span></dt>
  1963. <dd>The legend items (possibly <code>null</code>).</dd>
  1964. <dt><span class="simpleTagLabel">Since:</span></dt>
  1965. <dd>1.0.14</dd>
  1966. <dt><span class="seeLabel">See Also:</span></dt>
  1967. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#setFixedLegendItems-org.jfree.chart.LegendItemCollection-"><code>setFixedLegendItems(LegendItemCollection)</code></a></dd>
  1968. </dl>
  1969. </li>
  1970. </ul>
  1971. <a name="setFixedLegendItems-org.jfree.chart.LegendItemCollection-">
  1972. <!-- -->
  1973. </a>
  1974. <ul class="blockList">
  1975. <li class="blockList">
  1976. <h4>setFixedLegendItems</h4>
  1977. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1106">setFixedLegendItems</a>(<a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a>&nbsp;items)</pre>
  1978. <div class="block">Sets the fixed legend items for the plot. Leave this set to
  1979. <code>null</code> if you prefer the legend items to be created
  1980. automatically.</div>
  1981. <dl>
  1982. <dt><span class="paramLabel">Parameters:</span></dt>
  1983. <dd><code>items</code> - the legend items (<code>null</code> permitted).</dd>
  1984. <dt><span class="simpleTagLabel">Since:</span></dt>
  1985. <dd>1.0.14</dd>
  1986. <dt><span class="seeLabel">See Also:</span></dt>
  1987. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#getFixedLegendItems--"><code>getFixedLegendItems()</code></a></dd>
  1988. </dl>
  1989. </li>
  1990. </ul>
  1991. <a name="addCornerTextItem-java.lang.String-">
  1992. <!-- -->
  1993. </a>
  1994. <ul class="blockList">
  1995. <li class="blockList">
  1996. <h4>addCornerTextItem</h4>
  1997. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1119">addCornerTextItem</a>(java.lang.String&nbsp;text)</pre>
  1998. <div class="block">Add text to be displayed in the lower right hand corner and sends a
  1999. <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  2000. <dl>
  2001. <dt><span class="paramLabel">Parameters:</span></dt>
  2002. <dd><code>text</code> - the text to display (<code>null</code> not permitted).</dd>
  2003. <dt><span class="seeLabel">See Also:</span></dt>
  2004. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#removeCornerTextItem-java.lang.String-"><code>removeCornerTextItem(String)</code></a></dd>
  2005. </dl>
  2006. </li>
  2007. </ul>
  2008. <a name="removeCornerTextItem-java.lang.String-">
  2009. <!-- -->
  2010. </a>
  2011. <ul class="blockList">
  2012. <li class="blockList">
  2013. <h4>removeCornerTextItem</h4>
  2014. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1133">removeCornerTextItem</a>(java.lang.String&nbsp;text)</pre>
  2015. <div class="block">Remove the given text from the list of corner text items and
  2016. sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a> to all registered listeners.</div>
  2017. <dl>
  2018. <dt><span class="paramLabel">Parameters:</span></dt>
  2019. <dd><code>text</code> - the text to remove (<code>null</code> ignored).</dd>
  2020. <dt><span class="seeLabel">See Also:</span></dt>
  2021. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#addCornerTextItem-java.lang.String-"><code>addCornerTextItem(String)</code></a></dd>
  2022. </dl>
  2023. </li>
  2024. </ul>
  2025. <a name="clearCornerTextItems--">
  2026. <!-- -->
  2027. </a>
  2028. <ul class="blockList">
  2029. <li class="blockList">
  2030. <h4>clearCornerTextItems</h4>
  2031. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1147">clearCornerTextItems</a>()</pre>
  2032. <div class="block">Clear the list of corner text items and sends a <a href="../../../../org/jfree/chart/event/PlotChangeEvent.html" title="class in org.jfree.chart.event"><code>PlotChangeEvent</code></a>
  2033. to all registered listeners.</div>
  2034. <dl>
  2035. <dt><span class="seeLabel">See Also:</span></dt>
  2036. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#addCornerTextItem-java.lang.String-"><code>addCornerTextItem(String)</code></a>,
  2037. <a href="../../../../org/jfree/chart/plot/PolarPlot.html#removeCornerTextItem-java.lang.String-"><code>removeCornerTextItem(String)</code></a></dd>
  2038. </dl>
  2039. </li>
  2040. </ul>
  2041. <a name="refreshAngleTicks--">
  2042. <!-- -->
  2043. </a>
  2044. <ul class="blockList">
  2045. <li class="blockList">
  2046. <h4>refreshAngleTicks</h4>
  2047. <pre>protected&nbsp;java.util.List&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1161">refreshAngleTicks</a>()</pre>
  2048. <div class="block">Generates a list of tick values for the angular tick marks.</div>
  2049. <dl>
  2050. <dt><span class="returnLabel">Returns:</span></dt>
  2051. <dd>A list of <a href="../../../../org/jfree/chart/axis/NumberTick.html" title="class in org.jfree.chart.axis"><code>NumberTick</code></a> instances.</dd>
  2052. <dt><span class="simpleTagLabel">Since:</span></dt>
  2053. <dd>1.0.10</dd>
  2054. </dl>
  2055. </li>
  2056. </ul>
  2057. <a name="calculateTextAnchor-double-">
  2058. <!-- -->
  2059. </a>
  2060. <ul class="blockList">
  2061. <li class="blockList">
  2062. <h4>calculateTextAnchor</h4>
  2063. <pre>protected&nbsp;org.jfree.ui.TextAnchor&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1183">calculateTextAnchor</a>(double&nbsp;angleDegrees)</pre>
  2064. <div class="block">Calculate the text position for the given degrees.</div>
  2065. <dl>
  2066. <dt><span class="paramLabel">Parameters:</span></dt>
  2067. <dd><code>angleDegrees</code> - the angle in degrees.</dd>
  2068. <dt><span class="returnLabel">Returns:</span></dt>
  2069. <dd>The optimal text anchor.</dd>
  2070. <dt><span class="simpleTagLabel">Since:</span></dt>
  2071. <dd>1.0.14</dd>
  2072. </dl>
  2073. </li>
  2074. </ul>
  2075. <a name="mapDatasetToAxis-int-int-">
  2076. <!-- -->
  2077. </a>
  2078. <ul class="blockList">
  2079. <li class="blockList">
  2080. <h4>mapDatasetToAxis</h4>
  2081. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1233">mapDatasetToAxis</a>(int&nbsp;index,
  2082. int&nbsp;axisIndex)</pre>
  2083. <div class="block">Maps a dataset to a particular axis. All data will be plotted
  2084. against axis zero by default, no mapping is required for this case.</div>
  2085. <dl>
  2086. <dt><span class="paramLabel">Parameters:</span></dt>
  2087. <dd><code>index</code> - the dataset index (zero-based).</dd>
  2088. <dd><code>axisIndex</code> - the axis index.</dd>
  2089. <dt><span class="simpleTagLabel">Since:</span></dt>
  2090. <dd>1.0.14</dd>
  2091. </dl>
  2092. </li>
  2093. </ul>
  2094. <a name="mapDatasetToAxes-int-java.util.List-">
  2095. <!-- -->
  2096. </a>
  2097. <ul class="blockList">
  2098. <li class="blockList">
  2099. <h4>mapDatasetToAxes</h4>
  2100. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1249">mapDatasetToAxes</a>(int&nbsp;index,
  2101. java.util.List&nbsp;axisIndices)</pre>
  2102. <div class="block">Maps the specified dataset to the axes in the list. Note that the
  2103. conversion of data values into Java2D space is always performed using
  2104. the first axis in the list.</div>
  2105. <dl>
  2106. <dt><span class="paramLabel">Parameters:</span></dt>
  2107. <dd><code>index</code> - the dataset index (zero-based).</dd>
  2108. <dd><code>axisIndices</code> - the axis indices (<code>null</code> permitted).</dd>
  2109. <dt><span class="simpleTagLabel">Since:</span></dt>
  2110. <dd>1.0.14</dd>
  2111. </dl>
  2112. </li>
  2113. </ul>
  2114. <a name="getAxisForDataset-int-">
  2115. <!-- -->
  2116. </a>
  2117. <ul class="blockList">
  2118. <li class="blockList">
  2119. <h4>getAxisForDataset</h4>
  2120. <pre>public&nbsp;<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1300">getAxisForDataset</a>(int&nbsp;index)</pre>
  2121. <div class="block">Returns the axis for a dataset.</div>
  2122. <dl>
  2123. <dt><span class="paramLabel">Parameters:</span></dt>
  2124. <dd><code>index</code> - the dataset index.</dd>
  2125. <dt><span class="returnLabel">Returns:</span></dt>
  2126. <dd>The axis.</dd>
  2127. <dt><span class="simpleTagLabel">Since:</span></dt>
  2128. <dd>1.0.14</dd>
  2129. </dl>
  2130. </li>
  2131. </ul>
  2132. <a name="getAxisIndex-org.jfree.chart.axis.ValueAxis-">
  2133. <!-- -->
  2134. </a>
  2135. <ul class="blockList">
  2136. <li class="blockList">
  2137. <h4>getAxisIndex</h4>
  2138. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1324">getAxisIndex</a>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</pre>
  2139. <div class="block">Returns the index of the given axis.</div>
  2140. <dl>
  2141. <dt><span class="paramLabel">Parameters:</span></dt>
  2142. <dd><code>axis</code> - the axis.</dd>
  2143. <dt><span class="returnLabel">Returns:</span></dt>
  2144. <dd>The axis index or -1 if axis is not used in this plot.</dd>
  2145. <dt><span class="simpleTagLabel">Since:</span></dt>
  2146. <dd>1.0.14</dd>
  2147. </dl>
  2148. </li>
  2149. </ul>
  2150. <a name="getIndexOf-org.jfree.chart.renderer.PolarItemRenderer-">
  2151. <!-- -->
  2152. </a>
  2153. <ul class="blockList">
  2154. <li class="blockList">
  2155. <h4>getIndexOf</h4>
  2156. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1347">getIndexOf</a>(<a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer">PolarItemRenderer</a>&nbsp;renderer)</pre>
  2157. <div class="block">Returns the index of the specified renderer, or <code>-1</code> if the
  2158. renderer is not assigned to this plot.</div>
  2159. <dl>
  2160. <dt><span class="paramLabel">Parameters:</span></dt>
  2161. <dd><code>renderer</code> - the renderer (<code>null</code> permitted).</dd>
  2162. <dt><span class="returnLabel">Returns:</span></dt>
  2163. <dd>The renderer index.</dd>
  2164. <dt><span class="simpleTagLabel">Since:</span></dt>
  2165. <dd>1.0.14</dd>
  2166. </dl>
  2167. </li>
  2168. </ul>
  2169. <a name="draw-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.awt.geom.Point2D-org.jfree.chart.plot.PlotState-org.jfree.chart.plot.PlotRenderingInfo-">
  2170. <!-- -->
  2171. </a>
  2172. <ul class="blockList">
  2173. <li class="blockList">
  2174. <h4>draw</h4>
  2175. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1372">draw</a>(java.awt.Graphics2D&nbsp;g2,
  2176. java.awt.geom.Rectangle2D&nbsp;area,
  2177. java.awt.geom.Point2D&nbsp;anchor,
  2178. <a href="../../../../org/jfree/chart/plot/PlotState.html" title="class in org.jfree.chart.plot">PlotState</a>&nbsp;parentState,
  2179. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info)</pre>
  2180. <div class="block">Draws the plot on a Java 2D graphics device (such as the screen or a
  2181. printer).
  2182. <P>
  2183. This plot relies on a <a href="../../../../org/jfree/chart/renderer/PolarItemRenderer.html" title="interface in org.jfree.chart.renderer"><code>PolarItemRenderer</code></a> to draw each
  2184. item in the plot. This allows the visual representation of the data to
  2185. be changed easily.
  2186. <P>
  2187. The optional info argument collects information about the rendering of
  2188. the plot (dimensions, tooltip information etc). Just pass in
  2189. <code>null</code> if you do not need this information.</div>
  2190. <dl>
  2191. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2192. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#draw-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.awt.geom.Point2D-org.jfree.chart.plot.PlotState-org.jfree.chart.plot.PlotRenderingInfo-">draw</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2193. <dt><span class="paramLabel">Parameters:</span></dt>
  2194. <dd><code>g2</code> - the graphics device.</dd>
  2195. <dd><code>area</code> - the area within which the plot (including axes and
  2196. labels) should be drawn.</dd>
  2197. <dd><code>anchor</code> - the anchor point (<code>null</code> permitted).</dd>
  2198. <dd><code>parentState</code> - ignored.</dd>
  2199. <dd><code>info</code> - collects chart drawing information (<code>null</code>
  2200. permitted).</dd>
  2201. </dl>
  2202. </li>
  2203. </ul>
  2204. <a name="drawCornerTextItems-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">
  2205. <!-- -->
  2206. </a>
  2207. <ul class="blockList">
  2208. <li class="blockList">
  2209. <h4>drawCornerTextItems</h4>
  2210. <pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1435">drawCornerTextItems</a>(java.awt.Graphics2D&nbsp;g2,
  2211. java.awt.geom.Rectangle2D&nbsp;area)</pre>
  2212. <div class="block">Draws the corner text items.</div>
  2213. <dl>
  2214. <dt><span class="paramLabel">Parameters:</span></dt>
  2215. <dd><code>g2</code> - the drawing surface.</dd>
  2216. <dd><code>area</code> - the area.</dd>
  2217. </dl>
  2218. </li>
  2219. </ul>
  2220. <a name="drawAxis-org.jfree.chart.axis.ValueAxis-org.jfree.chart.plot.PolarAxisLocation-java.awt.Graphics2D-java.awt.geom.Rectangle2D-">
  2221. <!-- -->
  2222. </a>
  2223. <ul class="blockList">
  2224. <li class="blockList">
  2225. <h4>drawAxis</h4>
  2226. <pre>protected&nbsp;<a href="../../../../org/jfree/chart/axis/AxisState.html" title="class in org.jfree.chart.axis">AxisState</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1481">drawAxis</a>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  2227. <a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot">PolarAxisLocation</a>&nbsp;location,
  2228. java.awt.Graphics2D&nbsp;g2,
  2229. java.awt.geom.Rectangle2D&nbsp;plotArea)</pre>
  2230. <div class="block">Draws the axis with the specified index.</div>
  2231. <dl>
  2232. <dt><span class="paramLabel">Parameters:</span></dt>
  2233. <dd><code>axis</code> - the axis.</dd>
  2234. <dd><code>location</code> - the axis location.</dd>
  2235. <dd><code>g2</code> - the graphics target.</dd>
  2236. <dd><code>plotArea</code> - the plot area.</dd>
  2237. <dt><span class="returnLabel">Returns:</span></dt>
  2238. <dd>The axis state.</dd>
  2239. <dt><span class="simpleTagLabel">Since:</span></dt>
  2240. <dd>1.0.14</dd>
  2241. </dl>
  2242. </li>
  2243. </ul>
  2244. <a name="render-java.awt.Graphics2D-java.awt.geom.Rectangle2D-org.jfree.chart.plot.PlotRenderingInfo-">
  2245. <!-- -->
  2246. </a>
  2247. <ul class="blockList">
  2248. <li class="blockList">
  2249. <h4>render</h4>
  2250. <pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1546">render</a>(java.awt.Graphics2D&nbsp;g2,
  2251. java.awt.geom.Rectangle2D&nbsp;dataArea,
  2252. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info)</pre>
  2253. <div class="block">Draws a representation of the data within the dataArea region, using the
  2254. current m_Renderer.</div>
  2255. <dl>
  2256. <dt><span class="paramLabel">Parameters:</span></dt>
  2257. <dd><code>g2</code> - the graphics device.</dd>
  2258. <dd><code>dataArea</code> - the region in which the data is to be drawn.</dd>
  2259. <dd><code>info</code> - an optional object for collection dimension
  2260. information (<code>null</code> permitted).</dd>
  2261. </dl>
  2262. </li>
  2263. </ul>
  2264. <a name="drawGridlines-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.util.List-java.util.List-">
  2265. <!-- -->
  2266. </a>
  2267. <ul class="blockList">
  2268. <li class="blockList">
  2269. <h4>drawGridlines</h4>
  2270. <pre>protected&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1584">drawGridlines</a>(java.awt.Graphics2D&nbsp;g2,
  2271. java.awt.geom.Rectangle2D&nbsp;dataArea,
  2272. java.util.List&nbsp;angularTicks,
  2273. java.util.List&nbsp;radialTicks)</pre>
  2274. <div class="block">Draws the gridlines for the plot, if they are visible.</div>
  2275. <dl>
  2276. <dt><span class="paramLabel">Parameters:</span></dt>
  2277. <dd><code>g2</code> - the graphics device.</dd>
  2278. <dd><code>dataArea</code> - the data area.</dd>
  2279. <dd><code>angularTicks</code> - the ticks for the angular axis.</dd>
  2280. <dd><code>radialTicks</code> - the ticks for the radial axis.</dd>
  2281. </dl>
  2282. </li>
  2283. </ul>
  2284. <a name="buildRadialTicks-java.util.List-">
  2285. <!-- -->
  2286. </a>
  2287. <ul class="blockList">
  2288. <li class="blockList">
  2289. <h4>buildRadialTicks</h4>
  2290. <pre>protected&nbsp;java.util.List&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1624">buildRadialTicks</a>(java.util.List&nbsp;allTicks)</pre>
  2291. <div class="block">Create a list of ticks based on the given list and plot properties.
  2292. Only ticks of a specific type may be in the result list.</div>
  2293. <dl>
  2294. <dt><span class="paramLabel">Parameters:</span></dt>
  2295. <dd><code>allTicks</code> - A list of all available ticks for the primary axis.
  2296. <code>null</code> not permitted.</dd>
  2297. <dt><span class="returnLabel">Returns:</span></dt>
  2298. <dd>Ticks to use for radial gridlines.</dd>
  2299. <dt><span class="simpleTagLabel">Since:</span></dt>
  2300. <dd>1.0.15</dd>
  2301. </dl>
  2302. </li>
  2303. </ul>
  2304. <a name="zoom-double-">
  2305. <!-- -->
  2306. </a>
  2307. <ul class="blockList">
  2308. <li class="blockList">
  2309. <h4>zoom</h4>
  2310. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1644">zoom</a>(double&nbsp;percent)</pre>
  2311. <div class="block">Zooms the axis ranges by the specified percentage about the anchor point.</div>
  2312. <dl>
  2313. <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
  2314. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#zoom-double-">zoom</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2315. <dt><span class="paramLabel">Parameters:</span></dt>
  2316. <dd><code>percent</code> - the amount of the zoom.</dd>
  2317. </dl>
  2318. </li>
  2319. </ul>
  2320. <a name="getDataRange-org.jfree.chart.axis.ValueAxis-">
  2321. <!-- -->
  2322. </a>
  2323. <ul class="blockList">
  2324. <li class="blockList">
  2325. <h4>getDataRange</h4>
  2326. <pre>public&nbsp;<a href="../../../../org/jfree/data/Range.html" title="class in org.jfree.data">Range</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1698">getDataRange</a>(<a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis)</pre>
  2327. <div class="block">Returns the range for the specified axis.</div>
  2328. <dl>
  2329. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2330. <dd><code><a href="../../../../org/jfree/chart/plot/ValueAxisPlot.html#getDataRange-org.jfree.chart.axis.ValueAxis-">getDataRange</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/ValueAxisPlot.html" title="interface in org.jfree.chart.plot">ValueAxisPlot</a></code></dd>
  2331. <dt><span class="paramLabel">Parameters:</span></dt>
  2332. <dd><code>axis</code> - the axis.</dd>
  2333. <dt><span class="returnLabel">Returns:</span></dt>
  2334. <dd>The range.</dd>
  2335. </dl>
  2336. </li>
  2337. </ul>
  2338. <a name="datasetChanged-org.jfree.data.general.DatasetChangeEvent-">
  2339. <!-- -->
  2340. </a>
  2341. <ul class="blockList">
  2342. <li class="blockList">
  2343. <h4>datasetChanged</h4>
  2344. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1732">datasetChanged</a>(<a href="../../../../org/jfree/data/general/DatasetChangeEvent.html" title="class in org.jfree.data.general">DatasetChangeEvent</a>&nbsp;event)</pre>
  2345. <div class="block">Receives notification of a change to the plot's m_Dataset.
  2346. <P>
  2347. The axis ranges are updated if necessary.</div>
  2348. <dl>
  2349. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2350. <dd><code><a href="../../../../org/jfree/data/general/DatasetChangeListener.html#datasetChanged-org.jfree.data.general.DatasetChangeEvent-">datasetChanged</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/data/general/DatasetChangeListener.html" title="interface in org.jfree.data.general">DatasetChangeListener</a></code></dd>
  2351. <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
  2352. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#datasetChanged-org.jfree.data.general.DatasetChangeEvent-">datasetChanged</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2353. <dt><span class="paramLabel">Parameters:</span></dt>
  2354. <dd><code>event</code> - information about the event (not used here).</dd>
  2355. </dl>
  2356. </li>
  2357. </ul>
  2358. <a name="rendererChanged-org.jfree.chart.event.RendererChangeEvent-">
  2359. <!-- -->
  2360. </a>
  2361. <ul class="blockList">
  2362. <li class="blockList">
  2363. <h4>rendererChanged</h4>
  2364. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1755">rendererChanged</a>(<a href="../../../../org/jfree/chart/event/RendererChangeEvent.html" title="class in org.jfree.chart.event">RendererChangeEvent</a>&nbsp;event)</pre>
  2365. <div class="block">Notifies all registered listeners of a property change.
  2366. <P>
  2367. One source of property change events is the plot's m_Renderer.</div>
  2368. <dl>
  2369. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2370. <dd><code><a href="../../../../org/jfree/chart/event/RendererChangeListener.html#rendererChanged-org.jfree.chart.event.RendererChangeEvent-">rendererChanged</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/event/RendererChangeListener.html" title="interface in org.jfree.chart.event">RendererChangeListener</a></code></dd>
  2371. <dt><span class="paramLabel">Parameters:</span></dt>
  2372. <dd><code>event</code> - information about the property change.</dd>
  2373. </dl>
  2374. </li>
  2375. </ul>
  2376. <a name="getLegendItems--">
  2377. <!-- -->
  2378. </a>
  2379. <ul class="blockList">
  2380. <li class="blockList">
  2381. <h4>getLegendItems</h4>
  2382. <pre>public&nbsp;<a href="../../../../org/jfree/chart/LegendItemCollection.html" title="class in org.jfree.chart">LegendItemCollection</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1767">getLegendItems</a>()</pre>
  2383. <div class="block">Returns the legend items for the plot. Each legend item is generated by
  2384. the plot's m_Renderer, since the m_Renderer is responsible for the visual
  2385. representation of the data.</div>
  2386. <dl>
  2387. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2388. <dd><code><a href="../../../../org/jfree/chart/LegendItemSource.html#getLegendItems--">getLegendItems</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/LegendItemSource.html" title="interface in org.jfree.chart">LegendItemSource</a></code></dd>
  2389. <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
  2390. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#getLegendItems--">getLegendItems</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2391. <dt><span class="returnLabel">Returns:</span></dt>
  2392. <dd>The legend items.</dd>
  2393. </dl>
  2394. </li>
  2395. </ul>
  2396. <a name="equals-java.lang.Object-">
  2397. <!-- -->
  2398. </a>
  2399. <ul class="blockList">
  2400. <li class="blockList">
  2401. <h4>equals</h4>
  2402. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1795">equals</a>(java.lang.Object&nbsp;obj)</pre>
  2403. <div class="block">Tests this plot for equality with another object.</div>
  2404. <dl>
  2405. <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
  2406. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#equals-java.lang.Object-">equals</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2407. <dt><span class="paramLabel">Parameters:</span></dt>
  2408. <dd><code>obj</code> - the object (<code>null</code> permitted).</dd>
  2409. <dt><span class="returnLabel">Returns:</span></dt>
  2410. <dd><code>true</code> or <code>false</code>.</dd>
  2411. </dl>
  2412. </li>
  2413. </ul>
  2414. <a name="clone--">
  2415. <!-- -->
  2416. </a>
  2417. <ul class="blockList">
  2418. <li class="blockList">
  2419. <h4>clone</h4>
  2420. <pre>public&nbsp;java.lang.Object&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1881">clone</a>()
  2421. throws java.lang.CloneNotSupportedException</pre>
  2422. <div class="block">Returns a clone of the plot.</div>
  2423. <dl>
  2424. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2425. <dd><code>clone</code>&nbsp;in interface&nbsp;<code>org.jfree.util.PublicCloneable</code></dd>
  2426. <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
  2427. <dd><code><a href="../../../../org/jfree/chart/plot/Plot.html#clone--">clone</a></code>&nbsp;in class&nbsp;<code><a href="../../../../org/jfree/chart/plot/Plot.html" title="class in org.jfree.chart.plot">Plot</a></code></dd>
  2428. <dt><span class="returnLabel">Returns:</span></dt>
  2429. <dd>A clone.</dd>
  2430. <dt><span class="throwsLabel">Throws:</span></dt>
  2431. <dd><code>java.lang.CloneNotSupportedException</code> - this can occur if some component of
  2432. the plot cannot be cloned.</dd>
  2433. </dl>
  2434. </li>
  2435. </ul>
  2436. <a name="zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">
  2437. <!-- -->
  2438. </a>
  2439. <ul class="blockList">
  2440. <li class="blockList">
  2441. <h4>zoomDomainAxes</h4>
  2442. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.1987">zoomDomainAxes</a>(double&nbsp;factor,
  2443. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  2444. java.awt.geom.Point2D&nbsp;source)</pre>
  2445. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  2446. the plot does not have any domain axes, it does nothing.</div>
  2447. <dl>
  2448. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2449. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomDomainAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2450. <dt><span class="paramLabel">Parameters:</span></dt>
  2451. <dd><code>factor</code> - the zoom factor.</dd>
  2452. <dd><code>state</code> - the plot state.</dd>
  2453. <dd><code>source</code> - the source point (in Java2D coordinates).</dd>
  2454. <dt><span class="seeLabel">See Also:</span></dt>
  2455. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-"><code>Zoomable.zoomRangeAxes(double, PlotRenderingInfo, Point2D)</code></a></dd>
  2456. </dl>
  2457. </li>
  2458. </ul>
  2459. <a name="zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">
  2460. <!-- -->
  2461. </a>
  2462. <ul class="blockList">
  2463. <li class="blockList">
  2464. <h4>zoomDomainAxes</h4>
  2465. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2004">zoomDomainAxes</a>(double&nbsp;factor,
  2466. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  2467. java.awt.geom.Point2D&nbsp;source,
  2468. boolean&nbsp;useAnchor)</pre>
  2469. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  2470. the plot does not have any domain axes, it does nothing.</div>
  2471. <dl>
  2472. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2473. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">zoomDomainAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2474. <dt><span class="paramLabel">Parameters:</span></dt>
  2475. <dd><code>factor</code> - the zoom factor.</dd>
  2476. <dd><code>state</code> - the plot state.</dd>
  2477. <dd><code>source</code> - the source point (in Java2D coordinates).</dd>
  2478. <dd><code>useAnchor</code> - use source point as zoom anchor?</dd>
  2479. <dt><span class="simpleTagLabel">Since:</span></dt>
  2480. <dd>1.0.7</dd>
  2481. <dt><span class="seeLabel">See Also:</span></dt>
  2482. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-"><code>Zoomable.zoomRangeAxes(double, PlotRenderingInfo, Point2D, boolean)</code></a></dd>
  2483. </dl>
  2484. </li>
  2485. </ul>
  2486. <a name="zoomDomainAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">
  2487. <!-- -->
  2488. </a>
  2489. <ul class="blockList">
  2490. <li class="blockList">
  2491. <h4>zoomDomainAxes</h4>
  2492. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2019">zoomDomainAxes</a>(double&nbsp;lowerPercent,
  2493. double&nbsp;upperPercent,
  2494. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  2495. java.awt.geom.Point2D&nbsp;source)</pre>
  2496. <div class="block">This method is required by the <a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot"><code>Zoomable</code></a> interface, but since
  2497. the plot does not have any domain axes, it does nothing.</div>
  2498. <dl>
  2499. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2500. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomDomainAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomDomainAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2501. <dt><span class="paramLabel">Parameters:</span></dt>
  2502. <dd><code>lowerPercent</code> - the new lower bound.</dd>
  2503. <dd><code>upperPercent</code> - the new upper bound.</dd>
  2504. <dd><code>state</code> - the plot state.</dd>
  2505. <dd><code>source</code> - the source point (in Java2D coordinates).</dd>
  2506. <dt><span class="seeLabel">See Also:</span></dt>
  2507. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-"><code>Zoomable.zoomRangeAxes(double, double, PlotRenderingInfo, Point2D)</code></a></dd>
  2508. </dl>
  2509. </li>
  2510. </ul>
  2511. <a name="zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">
  2512. <!-- -->
  2513. </a>
  2514. <ul class="blockList">
  2515. <li class="blockList">
  2516. <h4>zoomRangeAxes</h4>
  2517. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2032">zoomRangeAxes</a>(double&nbsp;factor,
  2518. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  2519. java.awt.geom.Point2D&nbsp;source)</pre>
  2520. <div class="block">Multiplies the range on the range axis/axes by the specified factor.</div>
  2521. <dl>
  2522. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2523. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomRangeAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2524. <dt><span class="paramLabel">Parameters:</span></dt>
  2525. <dd><code>factor</code> - the zoom factor.</dd>
  2526. <dd><code>state</code> - the plot state.</dd>
  2527. <dd><code>source</code> - the source point (in Java2D coordinates).</dd>
  2528. <dt><span class="seeLabel">See Also:</span></dt>
  2529. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-"><code>Zoomable.zoomDomainAxes(double, PlotRenderingInfo, Point2D)</code></a></dd>
  2530. </dl>
  2531. </li>
  2532. </ul>
  2533. <a name="zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">
  2534. <!-- -->
  2535. </a>
  2536. <ul class="blockList">
  2537. <li class="blockList">
  2538. <h4>zoomRangeAxes</h4>
  2539. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2050">zoomRangeAxes</a>(double&nbsp;factor,
  2540. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;info,
  2541. java.awt.geom.Point2D&nbsp;source,
  2542. boolean&nbsp;useAnchor)</pre>
  2543. <div class="block">Multiplies the range on the range axis by the specified factor.</div>
  2544. <dl>
  2545. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2546. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-">zoomRangeAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2547. <dt><span class="paramLabel">Parameters:</span></dt>
  2548. <dd><code>factor</code> - the zoom factor.</dd>
  2549. <dd><code>info</code> - the plot rendering info.</dd>
  2550. <dd><code>source</code> - the source point (in Java2D space).</dd>
  2551. <dd><code>useAnchor</code> - use source point as zoom anchor?</dd>
  2552. <dt><span class="simpleTagLabel">Since:</span></dt>
  2553. <dd>1.0.7</dd>
  2554. <dt><span class="seeLabel">See Also:</span></dt>
  2555. <dd><a href="../../../../org/jfree/chart/plot/PolarPlot.html#zoomDomainAxes-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-boolean-"><code>zoomDomainAxes(double, PlotRenderingInfo, Point2D, boolean)</code></a></dd>
  2556. </dl>
  2557. </li>
  2558. </ul>
  2559. <a name="zoomRangeAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">
  2560. <!-- -->
  2561. </a>
  2562. <ul class="blockList">
  2563. <li class="blockList">
  2564. <h4>zoomRangeAxes</h4>
  2565. <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2080">zoomRangeAxes</a>(double&nbsp;lowerPercent,
  2566. double&nbsp;upperPercent,
  2567. <a href="../../../../org/jfree/chart/plot/PlotRenderingInfo.html" title="class in org.jfree.chart.plot">PlotRenderingInfo</a>&nbsp;state,
  2568. java.awt.geom.Point2D&nbsp;source)</pre>
  2569. <div class="block">Zooms in on the range axes.</div>
  2570. <dl>
  2571. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2572. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomRangeAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-">zoomRangeAxes</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2573. <dt><span class="paramLabel">Parameters:</span></dt>
  2574. <dd><code>lowerPercent</code> - the new lower bound.</dd>
  2575. <dd><code>upperPercent</code> - the new upper bound.</dd>
  2576. <dd><code>state</code> - the plot state.</dd>
  2577. <dd><code>source</code> - the source point (in Java2D coordinates).</dd>
  2578. <dt><span class="seeLabel">See Also:</span></dt>
  2579. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#zoomDomainAxes-double-double-org.jfree.chart.plot.PlotRenderingInfo-java.awt.geom.Point2D-"><code>Zoomable.zoomDomainAxes(double, double, PlotRenderingInfo, Point2D)</code></a></dd>
  2580. </dl>
  2581. </li>
  2582. </ul>
  2583. <a name="isDomainZoomable--">
  2584. <!-- -->
  2585. </a>
  2586. <ul class="blockList">
  2587. <li class="blockList">
  2588. <h4>isDomainZoomable</h4>
  2589. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2091">isDomainZoomable</a>()</pre>
  2590. <div class="block">Returns <code>false</code> always.</div>
  2591. <dl>
  2592. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2593. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#isDomainZoomable--">isDomainZoomable</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2594. <dt><span class="returnLabel">Returns:</span></dt>
  2595. <dd><code>false</code> always.</dd>
  2596. <dt><span class="seeLabel">See Also:</span></dt>
  2597. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#isRangeZoomable--"><code>Zoomable.isRangeZoomable()</code></a></dd>
  2598. </dl>
  2599. </li>
  2600. </ul>
  2601. <a name="isRangeZoomable--">
  2602. <!-- -->
  2603. </a>
  2604. <ul class="blockList">
  2605. <li class="blockList">
  2606. <h4>isRangeZoomable</h4>
  2607. <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2101">isRangeZoomable</a>()</pre>
  2608. <div class="block">Returns <code>true</code> to indicate that the range axis is zoomable.</div>
  2609. <dl>
  2610. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2611. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#isRangeZoomable--">isRangeZoomable</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2612. <dt><span class="returnLabel">Returns:</span></dt>
  2613. <dd><code>true</code>.</dd>
  2614. <dt><span class="seeLabel">See Also:</span></dt>
  2615. <dd><a href="../../../../org/jfree/chart/plot/Zoomable.html#isDomainZoomable--"><code>Zoomable.isDomainZoomable()</code></a></dd>
  2616. </dl>
  2617. </li>
  2618. </ul>
  2619. <a name="getOrientation--">
  2620. <!-- -->
  2621. </a>
  2622. <ul class="blockList">
  2623. <li class="blockList">
  2624. <h4>getOrientation</h4>
  2625. <pre>public&nbsp;<a href="../../../../org/jfree/chart/plot/PlotOrientation.html" title="class in org.jfree.chart.plot">PlotOrientation</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2111">getOrientation</a>()</pre>
  2626. <div class="block">Returns the orientation of the plot.</div>
  2627. <dl>
  2628. <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
  2629. <dd><code><a href="../../../../org/jfree/chart/plot/Zoomable.html#getOrientation--">getOrientation</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/jfree/chart/plot/Zoomable.html" title="interface in org.jfree.chart.plot">Zoomable</a></code></dd>
  2630. <dt><span class="returnLabel">Returns:</span></dt>
  2631. <dd>The orientation.</dd>
  2632. </dl>
  2633. </li>
  2634. </ul>
  2635. <a name="translateToJava2D-double-double-org.jfree.chart.axis.ValueAxis-java.awt.geom.Rectangle2D-">
  2636. <!-- -->
  2637. </a>
  2638. <ul class="blockList">
  2639. <li class="blockList">
  2640. <h4>translateToJava2D</h4>
  2641. <pre>public&nbsp;java.awt.Point&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2129">translateToJava2D</a>(double&nbsp;angleDegrees,
  2642. double&nbsp;radius,
  2643. <a href="../../../../org/jfree/chart/axis/ValueAxis.html" title="class in org.jfree.chart.axis">ValueAxis</a>&nbsp;axis,
  2644. java.awt.geom.Rectangle2D&nbsp;dataArea)</pre>
  2645. <div class="block">Translates a (theta, radius) pair into Java2D coordinates. If
  2646. <code>radius</code> is less than the lower bound of the axis, then
  2647. this method returns the centre point.</div>
  2648. <dl>
  2649. <dt><span class="paramLabel">Parameters:</span></dt>
  2650. <dd><code>angleDegrees</code> - the angle in degrees.</dd>
  2651. <dd><code>radius</code> - the radius.</dd>
  2652. <dd><code>axis</code> - the axis.</dd>
  2653. <dd><code>dataArea</code> - the data area.</dd>
  2654. <dt><span class="returnLabel">Returns:</span></dt>
  2655. <dd>A point in Java2D space.</dd>
  2656. <dt><span class="simpleTagLabel">Since:</span></dt>
  2657. <dd>1.0.14</dd>
  2658. </dl>
  2659. </li>
  2660. </ul>
  2661. <a name="translateValueThetaRadiusToJava2D-double-double-java.awt.geom.Rectangle2D-">
  2662. <!-- -->
  2663. </a>
  2664. <ul class="blockList">
  2665. <li class="blockList">
  2666. <h4>translateValueThetaRadiusToJava2D</h4>
  2667. <pre>public&nbsp;java.awt.Point&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2180">translateValueThetaRadiusToJava2D</a>(double&nbsp;angleDegrees,
  2668. double&nbsp;radius,
  2669. java.awt.geom.Rectangle2D&nbsp;dataArea)</pre>
  2670. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Since 1.0.14, use <a href="../../../../org/jfree/chart/plot/PolarPlot.html#translateToJava2D-double-double-org.jfree.chart.axis.ValueAxis-java.awt.geom.Rectangle2D-"><code>translateToJava2D(double, double,
  2671. org.jfree.chart.axis.ValueAxis, java.awt.geom.Rectangle2D)</code></a> instead.</span></div>
  2672. <div class="block">Translates a (theta, radius) pair into Java2D coordinates. If
  2673. <code>radius</code> is less than the lower bound of the axis, then
  2674. this method returns the centre point.</div>
  2675. <dl>
  2676. <dt><span class="paramLabel">Parameters:</span></dt>
  2677. <dd><code>angleDegrees</code> - the angle in degrees.</dd>
  2678. <dd><code>radius</code> - the radius.</dd>
  2679. <dd><code>dataArea</code> - the data area.</dd>
  2680. <dt><span class="returnLabel">Returns:</span></dt>
  2681. <dd>A point in Java2D space.</dd>
  2682. </dl>
  2683. </li>
  2684. </ul>
  2685. <a name="getMaxRadius--">
  2686. <!-- -->
  2687. </a>
  2688. <ul class="blockList">
  2689. <li class="blockList">
  2690. <h4>getMaxRadius</h4>
  2691. <pre>public&nbsp;double&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2194">getMaxRadius</a>()</pre>
  2692. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Since 1.0.14, use <a href="../../../../org/jfree/chart/plot/PolarPlot.html#getAxis--"><code>getAxis()</code></a> and call the
  2693. getUpperBound() method.</span></div>
  2694. <div class="block">Returns the upper bound of the radius axis.</div>
  2695. <dl>
  2696. <dt><span class="returnLabel">Returns:</span></dt>
  2697. <dd>The upper bound.</dd>
  2698. </dl>
  2699. </li>
  2700. </ul>
  2701. <a name="getSeriesCount--">
  2702. <!-- -->
  2703. </a>
  2704. <ul class="blockList">
  2705. <li class="blockList">
  2706. <h4>getSeriesCount</h4>
  2707. <pre>public&nbsp;int&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2207">getSeriesCount</a>()</pre>
  2708. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Since 1.0.14, grab a reference to the dataset and check
  2709. the series count directly.</span></div>
  2710. <div class="block">Returns the number of series in the dataset for this plot. If the
  2711. dataset is <code>null</code>, the method returns 0.</div>
  2712. <dl>
  2713. <dt><span class="returnLabel">Returns:</span></dt>
  2714. <dd>The series count.</dd>
  2715. </dl>
  2716. </li>
  2717. </ul>
  2718. <a name="drawAxis-java.awt.Graphics2D-java.awt.geom.Rectangle2D-java.awt.geom.Rectangle2D-">
  2719. <!-- -->
  2720. </a>
  2721. <ul class="blockListLast">
  2722. <li class="blockList">
  2723. <h4>drawAxis</h4>
  2724. <pre>protected&nbsp;<a href="../../../../org/jfree/chart/axis/AxisState.html" title="class in org.jfree.chart.axis">AxisState</a>&nbsp;<a href="../../../../src-html/org/jfree/chart/plot/PolarPlot.html#line.2227">drawAxis</a>(java.awt.Graphics2D&nbsp;g2,
  2725. java.awt.geom.Rectangle2D&nbsp;plotArea,
  2726. java.awt.geom.Rectangle2D&nbsp;dataArea)</pre>
  2727. <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">As of version 1.0.14, this method is no longer used.</span></div>
  2728. <div class="block">A utility method for drawing the axes.</div>
  2729. <dl>
  2730. <dt><span class="paramLabel">Parameters:</span></dt>
  2731. <dd><code>g2</code> - the graphics device.</dd>
  2732. <dd><code>plotArea</code> - the plot area.</dd>
  2733. <dd><code>dataArea</code> - the data area.</dd>
  2734. <dt><span class="returnLabel">Returns:</span></dt>
  2735. <dd>A map containing the axis states.</dd>
  2736. </dl>
  2737. </li>
  2738. </ul>
  2739. </li>
  2740. </ul>
  2741. </li>
  2742. </ul>
  2743. </div>
  2744. </div>
  2745. <!-- ========= END OF CLASS DATA ========= -->
  2746. <!-- ======= START OF BOTTOM NAVBAR ====== -->
  2747. <div class="bottomNav"><a name="navbar.bottom">
  2748. <!-- -->
  2749. </a>
  2750. <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
  2751. <a name="navbar.bottom.firstrow">
  2752. <!-- -->
  2753. </a>
  2754. <ul class="navList" title="Navigation">
  2755. <li><a href="../../../../overview-summary.html">Overview</a></li>
  2756. <li><a href="package-summary.html">Package</a></li>
  2757. <li class="navBarCell1Rev">Class</li>
  2758. <li><a href="class-use/PolarPlot.html">Use</a></li>
  2759. <li><a href="package-tree.html">Tree</a></li>
  2760. <li><a href="../../../../deprecated-list.html">Deprecated</a></li>
  2761. <li><a href="../../../../index-files/index-1.html">Index</a></li>
  2762. <li><a href="../../../../help-doc.html">Help</a></li>
  2763. </ul>
  2764. </div>
  2765. <div class="subNav">
  2766. <ul class="navList">
  2767. <li><a href="../../../../org/jfree/chart/plot/PolarAxisLocation.html" title="class in org.jfree.chart.plot"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
  2768. <li><a href="../../../../org/jfree/chart/plot/RainbowPalette.html" title="class in org.jfree.chart.plot"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
  2769. </ul>
  2770. <ul class="navList">
  2771. <li><a href="../../../../index.html?org/jfree/chart/plot/PolarPlot.html" target="_top">Frames</a></li>
  2772. <li><a href="PolarPlot.html" target="_top">No&nbsp;Frames</a></li>
  2773. </ul>
  2774. <ul class="navList" id="allclasses_navbar_bottom">
  2775. <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
  2776. </ul>
  2777. <div>
  2778. <script type="text/javascript"><!--
  2779. allClassesLink = document.getElementById("allclasses_navbar_bottom");
  2780. if(window==top) {
  2781. allClassesLink.style.display = "block";
  2782. }
  2783. else {
  2784. allClassesLink.style.display = "none";
  2785. }
  2786. //-->
  2787. </script>
  2788. </div>
  2789. <div>
  2790. <ul class="subNavList">
  2791. <li>Summary:&nbsp;</li>
  2792. <li>Nested&nbsp;|&nbsp;</li>
  2793. <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
  2794. <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
  2795. <li><a href="#method.summary">Method</a></li>
  2796. </ul>
  2797. <ul class="subNavList">
  2798. <li>Detail:&nbsp;</li>
  2799. <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
  2800. <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
  2801. <li><a href="#method.detail">Method</a></li>
  2802. </ul>
  2803. </div>
  2804. <a name="skip.navbar.bottom">
  2805. <!-- -->
  2806. </a></div>
  2807. <!-- ======== END OF BOTTOM NAVBAR ======= -->
  2808. </body>
  2809. </html>