René's URL Explorer Experiment


Title: Cannot set colorscale in template for some trace types · Issue #3100 · plotly/plotly.js · GitHub

Open Graph Title: Cannot set colorscale in template for some trace types · Issue #3100 · plotly/plotly.js

X Title: Cannot set colorscale in template for some trace types · Issue #3100 · plotly/plotly.js

Description: In working on developing templates for plotly.py I've found that I'm not able to set the colorscale and colorbar properties in the template for some trace types. This works as I expect for the heatmap trace type. The defualt colorscale o...

Open Graph Description: In working on developing templates for plotly.py I've found that I'm not able to set the colorscale and colorbar properties in the template for some trace types. This works as I expect for the heat...

X Description: In working on developing templates for plotly.py I've found that I'm not able to set the colorscale and colorbar properties in the template for some trace types. This works as I expect for ...

Opengraph URL: https://github.com/plotly/plotly.js/issues/3100

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Cannot set colorscale in template for some trace types","articleBody":"In working on developing templates for plotly.py I've found that I'm not able to set the colorscale and colorbar properties in the template for some trace types.\r\n\r\nThis works as I expect for the `heatmap` trace type. The defualt colorscale of Viridis and the colorbar tick properties are both applied.\r\nPen: https://codepen.io/jonmmease/pen/mzMeMW\r\n```javascript\r\nvar trace1 = {\r\n  type: 'heatmap',\r\n  z: [[1, 2, 3], [4, 5, 6]],\r\n};\r\n\r\nvar data = [ trace1 ];\r\n\r\nvar layout = {\r\n  template: {\r\n    data: {\r\n      heatmap: [{\r\n        colorscale: 'Viridis',\r\n        colorbar: {\r\n          ticks: 'inside',\r\n          ticklen: 10,\r\n          tickcolor: 'white'\r\n        }\r\n      }],\r\n    }\r\n  }\r\n};\r\n\r\nPlotly.newPlot('myDiv', data, layout);\r\n```\r\n![newplot-1](https://user-images.githubusercontent.com/15064365/46864559-c40b9400-cde8-11e8-835b-5be4b4e42d01.png)\r\n\r\nBut it does not work for the `scatter.marker` colorscale and colorbar.\r\nPen: https://codepen.io/jonmmease/pen/LgjpQG\r\n```javascript\r\nvar trace1 = {\r\n  type: 'scatter',\r\n  y: [1, 2, 3],\r\n  marker: {\r\n    size: 20,\r\n    color: [1, 2, 3],\r\n    showscale: true\r\n  },\r\n  mode: 'markers'\r\n};\r\n\r\nvar data = [ trace1 ];\r\n\r\nvar layout = {\r\n  template: {\r\n    data: {\r\n      scatter: [{\r\n        marker: {\r\n          symbol: 'square',\r\n          colorscale: 'Viridis',\r\n          colorbar: {\r\n            ticks: 'inside',\r\n            ticklen: 10,\r\n            tickcolor: 'white'\r\n          } \r\n        }\r\n      }],\r\n    }\r\n  }\r\n};\r\n\r\nPlotly.newPlot('myDiv', data, layout);\r\n```\r\n\r\nNote that `scatter.marker.symbol` is being picked up from the template, so I'm pretty sure the template specification is correct, but let me know if I'm missing something.\r\n\r\nI've noticed this same behavior for other colorscales and colorbars, and I can work through an exhaustive list later today if that's helpful.  Thanks!\r\n","author":{"url":"https://github.com/jonmmease","@type":"Person","name":"jonmmease"},"datePublished":"2018-10-12T10:41:16.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":6},"url":"https://github.com/3100/plotly.js/issues/3100"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:612b8114-b1ef-1c96-3f0b-9a4797fd5ac3
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA4BE:2747ED:594B36:772A1B:6A58280C
html-safe-noncefc2920b93132730552a30a936c584db440361ec5b5e9350084b6ac6803f5a674
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNEJFOjI3NDdFRDo1OTRCMzY6NzcyQTFCOjZBNTgyODBDIiwidmlzaXRvcl9pZCI6IjE2Nzk2MzA0Mzk4NjkzMjczNzIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc3c7594efa595010d8a74c583131cf743e4eeb8d4857faf456295a7c1f4f5795
hovercard-subject-tagissue:369497144
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/plotly/plotly.js/3100/issue_layout
twitter:imagehttps://opengraph.githubassets.com/499b6fb5390aae3a58e1a5430f45557a132eefdb7653d9a78c641ac62dddd99e/plotly/plotly.js/issues/3100
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/499b6fb5390aae3a58e1a5430f45557a132eefdb7653d9a78c641ac62dddd99e/plotly/plotly.js/issues/3100
og:image:altIn working on developing templates for plotly.py I've found that I'm not able to set the colorscale and colorbar properties in the template for some trace types. This works as I expect for the heat...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejonmmease
hostnamegithub.com
expected-hostnamegithub.com
None49c8c15fabcbf356d607a90ca115c13b273e42ff8b74155de050fd229a9b0121
turbo-cache-controlno-preview
go-importgithub.com/plotly/plotly.js git https://github.com/plotly/plotly.js.git
octolytics-dimension-user_id5997976
octolytics-dimension-user_loginplotly
octolytics-dimension-repository_id45646037
octolytics-dimension-repository_nwoplotly/plotly.js
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id45646037
octolytics-dimension-repository_network_root_nwoplotly/plotly.js
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3fb1f684e7a833eb1b2d01d39875a2b52cb4fe9b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/plotly/plotly.js/issues/3100#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fplotly%2Fplotly.js%2Fissues%2F3100
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fplotly%2Fplotly.js%2Fissues%2F3100
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=plotly%2Fplotly.js
Reloadhttps://github.com/plotly/plotly.js/issues/3100
Reloadhttps://github.com/plotly/plotly.js/issues/3100
Reloadhttps://github.com/plotly/plotly.js/issues/3100
Please reload this pagehttps://github.com/plotly/plotly.js/issues/3100
plotly https://github.com/plotly
plotly.jshttps://github.com/plotly/plotly.js
Please reload this pagehttps://github.com/plotly/plotly.js/issues/3100
Notifications https://github.com/login?return_to=%2Fplotly%2Fplotly.js
Fork 2k https://github.com/login?return_to=%2Fplotly%2Fplotly.js
Star 18.3k https://github.com/login?return_to=%2Fplotly%2Fplotly.js
Code https://github.com/plotly/plotly.js
Issues 773 https://github.com/plotly/plotly.js/issues
Pull requests 56 https://github.com/plotly/plotly.js/pulls
Actions https://github.com/plotly/plotly.js/actions
Security and quality 0 https://github.com/plotly/plotly.js/security
Insights https://github.com/plotly/plotly.js/pulse
Code https://github.com/plotly/plotly.js
Issues https://github.com/plotly/plotly.js/issues
Pull requests https://github.com/plotly/plotly.js/pulls
Actions https://github.com/plotly/plotly.js/actions
Security and quality https://github.com/plotly/plotly.js/security
Insights https://github.com/plotly/plotly.js/pulse
Cannot set colorscale in template for some trace typeshttps://github.com/plotly/plotly.js/issues/3100#top
bugsomething brokenhttps://github.com/plotly/plotly.js/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com/jonmmease
jonmmeasehttps://github.com/jonmmease
on Oct 12, 2018https://github.com/plotly/plotly.js/issues/3100#issue-369497144
https://codepen.io/jonmmease/pen/mzMeMWhttps://codepen.io/jonmmease/pen/mzMeMW
https://user-images.githubusercontent.com/15064365/46864559-c40b9400-cde8-11e8-835b-5be4b4e42d01.png
https://codepen.io/jonmmease/pen/LgjpQGhttps://codepen.io/jonmmease/pen/LgjpQG
bugsomething brokenhttps://github.com/plotly/plotly.js/issues?q=state%3Aopen%20label%3A%22bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.