Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Category axis placed in non-default pane does not respect the specified crossing value #2011

Closed
tsvetomir opened this issue Jul 29, 2016 · 2 comments

Comments

@tsvetomir
Copy link
Member

Bug report

Reproduction of the problem

  <div id="chart"></div>
  <script>
    $(function() {
      $("#chart").kendoChart({
        panes: [{
          name: "a"
        }, {
          name: "b"
        }],
        valueAxis: [{
          name: "a",
          pane: "a",
          axisCrossingValue: 1
        }, {
          name: "b",
          pane: "b",
          axisCrossingValue: 1
        }],
        categoryAxis: {
          // change to "a" to see correct behavior
          // for upper pane
          pane: "b"
        },
        series: [{
          data: [2, 3, 4]
        }, {
          data: [2, 3, 4],
          axis: "b"
        }]
      });
    });
  </script>

Current behavior

The category axis is not rendered at the specified crossing value unless it is placed in the first pane.

Expected/desired behavior

The crossing value should be respected regardless of the pane the axis is in.

Environment

  • Kendo UI version: 2016.2.714
  • jQuery version: any
  • Browser: all
@dimodi
Copy link
Contributor

dimodi commented Aug 2, 2016

Please notify the customer in thread 1053425 when a fix is available.

tsvetomir added a commit that referenced this issue Aug 3, 2016
@tsvetomir
Copy link
Member Author

Oops, closed the wrong issue!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants