Giter Site home page Giter Site logo

telescopest / telescope Goto Github PK

View Code? Open in Web Editor NEW
31.0 31.0 10.0 9.65 MB

Telescope is an engine for efficiently creating meaningful visualizations

License: MIT License

Smalltalk 100.00%
dynamic interactions interactive pharo telescope visualization visualizations

telescope's People

Contributors

anneetien avatar badetitou avatar bocasti avatar damiencassou avatar gustavojss avatar jecisc avatar larcheveque avatar lesageyann avatar nicolasanquetil avatar olivierauverlot avatar ubhatti avatar vincentblondeau avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

telescope's Issues

TLStyleCustomizationAction>>#actionOn:

This method does not seems to be used. Instead the #regularActionOn: and #reversedActionOn: are used.

Is there a case I miss? Is it still needed or is it an artifact from the past?

Impove Demo page

  • Style (CSS)
  • Text area to create our own visualization on web
  • See the code of the visualization
  • If a demo fail, catch the exception and show an error message
  • A description of the demo?
  • Labels and filter in demos?

The layout update can do unecessary work.

I am not sure of the exact way to reproduce but I had this problem:

I have a composite node with composite nodes inside. I added an interaction of mouseOver to add some connections. The connections had no influence on the layout. But if the layout was update when we added the connections, a lot of nodes where update and the composites with no child inside were changed and took all the height possible.

I consider this as a bug because if a layout is updated while we did not added/deleted anything, it should not change the visualization.

Legend: Add group and columns

I think it would be good to have some "groups". For example

Connection style
--------------------
---   Something
....   Something else
___   Something new

Border style
--------------------
…

Also it could be cool to be able to say way want columns when the legend is too big.

Cytoscape: Hidden nodes are rendered at visualization openning.

For example:

| visualization secondNode firstNode thirdNode |
	visualization := TLVisualization new.
	visualization layout: (TLLinearLayout gap: 50).
	firstNode := visualization addNodeFromEntity: 2.
	secondNode := visualization addNodeFromEntity: 1.
	secondNode styleSheet nodeLabel: 'Click on me!' position: #top.
	thirdNode := visualization addNodeFromEntity: 3.
	thirdNode hide.
	secondNode
		addInteractions:
			{(TLHideAction on: firstNode) onClick.
			(TLShowAction on: thirdNode) onClick}.
	^ visualization

Here the visibility of thirdNode is set to false but the node appears during the rendering.

Tree layout mix elements order

Example

| visu |
	(visu := TLVisualization new)
		addNodesFromEntities: (1 to: 9);
		layout:
				(TLTreeLayout new
						useOutgoingLinks;
						leavesGap: 40;
						levelGap: 20;
						yourself);
		addInteraction: (TLExpandCollapseNodesAction property: [ :n | (0 to: 9) collect: [ :i | n * 10 + i ] ]) onClick;
		yourself.
	visu styleSheet nodeLabel: #asString.
	^ visu

Here I get the nodes in this order: 3 4 2 7 1 6 5 9 8

But when I expand a node, they are in the right order.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.