Plot.ly: Align marker positionCustomizing a 3D Plotly Visualization with a slider barHow to add custom legend, plot.lyplot.ly heatmap colorscale not workingmanaging colors in R for plot.lyplotly - where can I find the default color palette used in plotly packagePlotly's fillcolor defaults to half-transparency, want no-transparencyPlotting a timeline with different colors in the same line with Python (Gantt-Chart?)Edit layout of plotly Gantt Chart based on DataFrameShiny Plot Click Event - Updating Table OnlyIn Dash/Plotly, how can I get the individual stacked parts of a stacked bar chart to show their values verses the entire series?
Everything Bob says is false. How does he get people to trust him?
Can I Retrieve Email Addresses from BCC?
Is there an Impartial Brexit Deal comparison site?
What does "I’d sit this one out, Cap," imply or mean in the context?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
when is out of tune ok?
Implement the Thanos sorting algorithm
How can a jailer prevent the Forge Cleric's Artisan's Blessing from being used?
Type int? vs type int
Will it be accepted, if there is no ''Main Character" stereotype?
Does "every" first-order theory have a finitely axiomatizable conservative extension?
How to do get all objects in nested array after performing calculation in javascript
What is paid subscription needed for in Mortal Kombat 11?
Using parameter substitution on a Bash array
A command with a variable number of arguments: comma versus and
8 channel quiz buzzer circuit using 8051 microcontroller
What is the opposite of 'gravitas'?
Failed to fetch jessie backports repository
If you attempt to grapple an opponent that you are hidden from, do they roll at disadvantage?
How to Reset Passwords on Multiple Websites Easily?
Fastening aluminum fascia to wooden subfascia
Why Were Madagascar and New Zealand Discovered So Late?
What is the "Sexateria"?
How does it work when somebody invests in my business?
Plot.ly: Align marker position
Customizing a 3D Plotly Visualization with a slider barHow to add custom legend, plot.lyplot.ly heatmap colorscale not workingmanaging colors in R for plot.lyplotly - where can I find the default color palette used in plotly packagePlotly's fillcolor defaults to half-transparency, want no-transparencyPlotting a timeline with different colors in the same line with Python (Gantt-Chart?)Edit layout of plotly Gantt Chart based on DataFrameShiny Plot Click Event - Updating Table OnlyIn Dash/Plotly, how can I get the individual stacked parts of a stacked bar chart to show their values verses the entire series?
I am new to Plot.ly and made some researches for the problem (described below) and couldn't find any solution, hope someone can help :)
I am using javascript and by using plot.ly I have generated following chart:

The JSON for this chart looks like this:
[
"mode": "markers",
"x": [
"Sales"
],
"y": [
300
],
"hoverinfo": "none",
"text": "Capacity",
"marker":
"color": "rgb(17, 157, 255)",
"size": 20,
"symbol": 7,
"line":
"width": 2
,
"type": "bar",
"x": [
"Sales"
],
"y": [
500
],
"hoverinfo": "none",
"text": "Demand",
"marker":
"color": "rgb(150,204,204)",
"line":
"width": "5"
]
What I want to achieve is that the marker is aligned on the right side of the bar chart which should look like this:

Is there something like a markerposition? All I could find on plot.ly was this reference: https://plot.ly/javascript/marker-style/
For me it seems like that there is no possibility to align the marker on the right-hand-side.
plotly
add a comment |
I am new to Plot.ly and made some researches for the problem (described below) and couldn't find any solution, hope someone can help :)
I am using javascript and by using plot.ly I have generated following chart:

The JSON for this chart looks like this:
[
"mode": "markers",
"x": [
"Sales"
],
"y": [
300
],
"hoverinfo": "none",
"text": "Capacity",
"marker":
"color": "rgb(17, 157, 255)",
"size": 20,
"symbol": 7,
"line":
"width": 2
,
"type": "bar",
"x": [
"Sales"
],
"y": [
500
],
"hoverinfo": "none",
"text": "Demand",
"marker":
"color": "rgb(150,204,204)",
"line":
"width": "5"
]
What I want to achieve is that the marker is aligned on the right side of the bar chart which should look like this:

Is there something like a markerposition? All I could find on plot.ly was this reference: https://plot.ly/javascript/marker-style/
For me it seems like that there is no possibility to align the marker on the right-hand-side.
plotly
add a comment |
I am new to Plot.ly and made some researches for the problem (described below) and couldn't find any solution, hope someone can help :)
I am using javascript and by using plot.ly I have generated following chart:

The JSON for this chart looks like this:
[
"mode": "markers",
"x": [
"Sales"
],
"y": [
300
],
"hoverinfo": "none",
"text": "Capacity",
"marker":
"color": "rgb(17, 157, 255)",
"size": 20,
"symbol": 7,
"line":
"width": 2
,
"type": "bar",
"x": [
"Sales"
],
"y": [
500
],
"hoverinfo": "none",
"text": "Demand",
"marker":
"color": "rgb(150,204,204)",
"line":
"width": "5"
]
What I want to achieve is that the marker is aligned on the right side of the bar chart which should look like this:

Is there something like a markerposition? All I could find on plot.ly was this reference: https://plot.ly/javascript/marker-style/
For me it seems like that there is no possibility to align the marker on the right-hand-side.
plotly
I am new to Plot.ly and made some researches for the problem (described below) and couldn't find any solution, hope someone can help :)
I am using javascript and by using plot.ly I have generated following chart:

The JSON for this chart looks like this:
[
"mode": "markers",
"x": [
"Sales"
],
"y": [
300
],
"hoverinfo": "none",
"text": "Capacity",
"marker":
"color": "rgb(17, 157, 255)",
"size": 20,
"symbol": 7,
"line":
"width": 2
,
"type": "bar",
"x": [
"Sales"
],
"y": [
500
],
"hoverinfo": "none",
"text": "Demand",
"marker":
"color": "rgb(150,204,204)",
"line":
"width": "5"
]
What I want to achieve is that the marker is aligned on the right side of the bar chart which should look like this:

Is there something like a markerposition? All I could find on plot.ly was this reference: https://plot.ly/javascript/marker-style/
For me it seems like that there is no possibility to align the marker on the right-hand-side.
plotly
plotly
asked Mar 7 at 12:24
OemerOemer
719
719
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043744%2fplot-ly-align-marker-position%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55043744%2fplot-ly-align-marker-position%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown