Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. ==================================================================== */
  15. package org.apache.poi.ss.usermodel.charts;
  16. import org.apache.poi.util.Removal;
  17. /**
  18. * Specifies the possible crossing points for an axis.
  19. *
  20. * @deprecated use XDDF AxisCrosses instead
  21. */
  22. @Deprecated
  23. @Removal(version="4.2")
  24. public enum AxisCrosses {
  25. /**
  26. * The category axis crosses at the zero point of the value axis (if
  27. * possible), or the minimum value (if the minimum is greater than zero) or
  28. * the maximum (if the maximum is less than zero).
  29. */
  30. AUTO_ZERO,
  31. /**
  32. * The axis crosses at the maximum value.
  33. */
  34. MIN,
  35. /**
  36. * Axis crosses at the minimum value of the chart.
  37. */
  38. MAX
  39. }